今天照书运行了它自带的Hello程序。结果Vectors.asm出错了!程序如下:
vectors.asm:
.sect".vectors"
.ref _c_int00
.if(.MNEMONIC) //23line
rsv:
B _c_int00
NOP
.align 8
.else
rsv:
goto _c_int00 //33line
NOP
.align 8
.endif
错误:
at line 23:[E0004]Absolute,well-defined integer value
expected
.if(.MNEMONIC)
at line 33:[E0002]Invalid mnemonic specification
goto _c_int00; branch to C entry point
at EOF:[E0300]The following symbols are undefined:
3 Assembly Errors,No Assembly Warnings
.MNEMONIC
万分感谢啊! |