;**********************************
; Boot1.asm
; - A Simple Bootloader
; Operating System Development
;**********************************
org 0x7c00 ;BIOS loaded 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 rest of bytes with 0
ddw 0xAA55 ;Boot signature
我在Windows 7上的nasm中编写了一个简单的boot-loader程序,但是我收到了一个错误:
error:parser: instruction expected.
这个问题以前已经解决了,但我没有在我的背景下得到它。
答案 0 :(得分:1)
NASM文档未命名汇编程序指令ddw
。我希望这是错误信息的内容。 ddw
不是"指令,"所以很困惑。