Change commentary
This commit is contained in:
parent
cd26dde8c5
commit
c675b3994c
1 changed files with 3 additions and 2 deletions
|
@ -1,10 +1,11 @@
|
||||||
|
;Start 16 BITS bootloader program
|
||||||
[BITS 16]
|
[BITS 16]
|
||||||
|
|
||||||
;Save the first adress in with start label
|
;Save the first adress with a label to complete the MBR at the end.
|
||||||
start:
|
start:
|
||||||
|
|
||||||
;Init CPU registers
|
;Init CPU registers
|
||||||
mov ax, 0x0C70
|
mov ax, 0x0C70 ;Put bootloader adress in ax register
|
||||||
mov ds, ax ;Init data segment
|
mov ds, ax ;Init data segment
|
||||||
|
|
||||||
;Complete the MBR with nothing
|
;Complete the MBR with nothing
|
||||||
|
|
Loading…
Add table
Reference in a new issue