Add some comments

This commit is contained in:
manzerbredes 2015-07-18 10:30:53 +04:00
parent 2dd46db796
commit 22a23d6784

View file

@ -12,10 +12,12 @@ skipInc:
;Init CPU registers
mov ax, 0x0C70 ;Put bootloader adress in ax register
mov ds, ax ;Init data segment
;Init stack from 0x80000 to 0x8f000
mov ax, 0x8000
mov ss, ax
mov ax, 0xf000
mov sp, ax
mov ss, ax ;Set stack segment
mov ax, 0x0f00
mov sp, ax ;Set stack offset
;Clear the screen
call clearScreenIntBios