Add some comments
This commit is contained in:
parent
2dd46db796
commit
22a23d6784
1 changed files with 5 additions and 3 deletions
|
@ -12,10 +12,12 @@ skipInc:
|
||||||
;Init CPU registers
|
;Init CPU registers
|
||||||
mov ax, 0x0C70 ;Put bootloader adress in ax register
|
mov ax, 0x0C70 ;Put bootloader adress in ax register
|
||||||
mov ds, ax ;Init data segment
|
mov ds, ax ;Init data segment
|
||||||
|
|
||||||
|
;Init stack from 0x80000 to 0x8f000
|
||||||
mov ax, 0x8000
|
mov ax, 0x8000
|
||||||
mov ss, ax
|
mov ss, ax ;Set stack segment
|
||||||
mov ax, 0xf000
|
mov ax, 0x0f00
|
||||||
mov sp, ax
|
mov sp, ax ;Set stack offset
|
||||||
|
|
||||||
;Clear the screen
|
;Clear the screen
|
||||||
call clearScreenIntBios
|
call clearScreenIntBios
|
||||||
|
|
Loading…
Add table
Reference in a new issue