PiegOS/bootloader/bootloader.asm

33 lines
574 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:
2015-07-18 10:26:33 +04:00
;Include bios routines and jump to skip including code
jmp skipInc
%include "clearScreenIntBios.asm"
skipInc:
2015-07-18 10:23:36 +04:00
2015-07-17 17:14:42 +04:00
;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 10:23:36 +04:00
mov ax, 0x8000
mov ss, ax
mov ax, 0xf000
mov sp, ax
2015-07-18 10:26:33 +04:00
;Clear the screen
2015-07-18 10:23:36 +04:00
call clearScreenIntBios
2015-07-17 17:14:42 +04:00
2015-07-18 08:56:35 +04:00
;Pause here !
infiniteLoop:
jmp infiniteLoop
2015-07-18 10:23:36 +04:00
2015-07-17 17:14:42 +04:00
;Complete the MBR with nothing
times 510 - ($ - start) db 0x0
;Declare magic number
dw 0xAA55