mirror of
https://github.com/open-simh/simtools.git
synced 2026-01-13 15:27:18 +00:00
This is most relevant in implied .WORD directives which are caused by an attempt to call a macro (which happens to be undefined) with arguments that don't parse as valid expressions.
13 lines
310 B
Plaintext
13 lines
310 B
Plaintext
;;;;;
|
|
;
|
|
; Test the implied .word construction
|
|
;
|
|
|
|
start: 3
|
|
start
|
|
; The following could be a macro which by accident is not defined
|
|
; which takes arguments that don't parse as expressions.
|
|
macro 8-BIT,1,2,3
|
|
; The following can by accident be parsed as an expression.
|
|
macro 7-BIT,1,2,3
|