Closed nurpax closed 5 years ago
!macro xyz(col) { lda #col sta xyz; $d020 }
(xyz is undeclared)
this gives:
Must have a label or a variable identifier here, got macro name
actually it's because xyz is in scope as a macro. so the error is correct.
(xyz is undeclared)
this gives:
Must have a label or a variable identifier here, got macro name