我正在閱讀brokenthorn.com的O/S開發教程之一的教程,下面的代碼就在那裏。引導程序的大小
http://www.brokenthorn.com/Resources/OSDev3.html
我不明白爲什麼這個代碼清晰510個字節。 org,bits,cli,hlt也在代碼中。不應該將其更改爲小於510字節?它可能是錯字或什麼的?
謝謝。
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;*********************************************
; Boot1.asm
; - A Simple Bootloader
;
; Operating Systems Development Tutorial
;*********************************************
org 0x7c00 ; We are loaded by BIOS at 0x7C00
bits 16 ; We are still in 16 bit Real Mode
Start:
cli ; Clear all Interrupts
hlt ; halt the system
times 510 - ($-$$) db 0 ; We have to be 512 bytes. Clear the rest of the bytes with 0
dw 0xAA55 ; Boot Signiture
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;