NASM错误:预期解析器指令

时间:2014-09-03 03:45:56

标签: parsing assembly nasm

 ;**********************************
 ; 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.

这个问题以前已经解决了,但我没有在我的背景下得到它。

1 个答案:

答案 0 :(得分:1)

NASM文档未命名汇编程序指令ddw。我希望这是错误信息的内容。 ddw不是"指令,"所以很困惑。