PiegOS/bootloader/bootloader.asm

20 lines
367 B
NASM
Raw Normal View History

2015-07-17 17:50:28 +04:00
;Start 16 BITS bootloader program
2015-07-17 17:14:42 +04:00
[BITS 16]
2015-07-17 17:50:28 +04:00
;Save the first adress with a label to complete the MBR at the end.
2015-07-17 17:14:42 +04:00
start:
;Init CPU registers
2015-07-17 17:50:28 +04:00
mov ax, 0x0C70 ;Put bootloader adress in ax register
2015-07-17 17:14:42 +04:00
mov ds, ax ;Init data segment
2015-07-18 08:56:35 +04:00
;Pause here !
infiniteLoop:
jmp infiniteLoop
2015-07-17 17:14:42 +04:00
;Complete the MBR with nothing
times 510 - ($ - start) db 0x0
;Declare magic number
dw 0xAA55