5

试图学习如何使用 ca65 汇编器,我一直在努力使包含警卫工作。谷歌搜索和阅读ca65 用户指南没有帮助。这是产生错误的最小示例。

$ ls -l
total 16
-rw-r--r--  1 me  staff  60 Oct 22 19:40 65.inc
-rw-r--r--  1 me  staff  55 Oct 22 20:01 test.s
$
$ cat 65.inc
.ifndef _65_INC_
.define _65_INC_

.define NUMBER 1

.endif
$
$ cat test.s
.include "65.inc"
.include "65.inc"

    lda #NUMBER
    rts
$
$ ca65 test.s
65.inc(1): Error: Identifier expected
65.inc(2): Error: Identifier expected
65.inc(4): Error: Identifier expected
65.inc(4): Note: Macro was defined here
$
$ ls -l
total 16
-rw-r--r--  1 me  staff  60 Oct 22 19:40 65.inc
-rw-r--r--  1 me  staff  55 Oct 22 20:01 test.s
$

如果我只在其中包含65.inc 一次test.s则可以毫无问题地组装,如下所示:

$ ls -l
total 16
-rw-r--r--  1 me  staff  60 Oct 22 19:40 65.inc
-rw-r--r--  1 me  staff  37 Oct 22 20:07 test.s
$
$ cat 65.inc
.ifndef _65_INC_
.define _65_INC_

.define NUMBER 1

.endif
$
$ cat test.s
.include "65.inc"

    lda #NUMBER
    rts
$
$ ca65 test.s
$
$ ls -l
total 24
-rw-r--r--  1 me  staff   60 Oct 22 19:40 65.inc
-rw-r--r--  1 me  staff  295 Oct 22 20:07 test.o
-rw-r--r--  1 me  staff   37 Oct 22 20:07 test.s
$
$ ca65 --version
ca65 V2.17 - Git 153bb29

我错过了什么?

4

1 回答 1

9

有点令人困惑.ifndef,朋友们适用于宏不是的符号.define(定义宏)。因此,一种可能的解决方法是使用符号,例如

.ifndef _65_INC_
_65_INC_ = 1

.define NUMBER 1

.endif
于 2019-10-22T19:20:16.000 回答