2018-12-04 09:46:27 +00:00
|
|
|
/* https://github.com/cirosantilli/x86-bare-metal-examples#bios-disk-load */
|
|
|
|
|
|
2015-10-06 12:27:24 +02:00
|
|
|
#include "common.h"
|
|
|
|
|
BEGIN
|
|
|
|
|
CLEAR
|
|
|
|
|
STAGE2
|
2015-10-21 15:55:27 +02:00
|
|
|
PUTC $'a
|
2015-10-06 12:27:24 +02:00
|
|
|
jmp sector3
|
|
|
|
|
.org 512
|
|
|
|
|
sector3:
|
2015-10-21 15:55:27 +02:00
|
|
|
PUTC $'b
|
2015-10-06 12:27:24 +02:00
|
|
|
hlt
|