PiegOS/bootloader/bootloader.asm

42 lines
848 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"
2015-07-18 11:16:14 +04:00
%include "printIntBios.asm"
2015-07-18 10:26:33 +04:00
skipInc:
2015-07-18 10:23:36 +04:00
2015-07-17 17:14:42 +04:00
;Init CPU registers
2015-07-18 11:16:14 +04:00
mov ax, 0x07C0 ;Put bootloader adress in ax register
2015-07-17 17:14:42 +04:00
mov ds, ax ;Init data segment
2015-07-18 10:30:53 +04:00
;Init stack from 0x80000 to 0x8f000
2015-07-18 10:23:36 +04:00
mov ax, 0x8000
2015-07-18 10:30:53 +04:00
mov ss, ax ;Set stack segment
mov ax, 0x0f00
mov sp, ax ;Set stack offset
2015-07-18 10:23:36 +04:00
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 11:16:14 +04:00
;Print msg
mov si, helloBootloader ;load msg in si register
call printIntBios ;print the msg
2015-07-18 08:56:35 +04:00
;Pause here !
infiniteLoop:
jmp infiniteLoop
2015-07-18 11:16:14 +04:00
;Define data
helloBootloader db "PiegOS bootloader successfully running !", 0
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