Files
x86-bare-metal-examples/bios_disk_load2.S

13 lines
189 B
ArmAsm
Raw Normal View History

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
PUTC $'a
2015-10-06 12:27:24 +02:00
jmp sector3
.org 512
sector3:
PUTC $'b
2015-10-06 12:27:24 +02:00
hlt