mirror of
https://github.com/uffejakobsen/acme.git
synced 2024-11-29 04:49:20 +00:00
10 lines
215 B
Plaintext
10 lines
215 B
Plaintext
|
*=$1000
|
||
|
!pseudopc $0300 {
|
||
|
label1 nop
|
||
|
label2 = label1 + 1
|
||
|
dummy = $0500
|
||
|
}
|
||
|
;test = &label1 ; this works
|
||
|
;test = &label2 ; this also works
|
||
|
err = &dummy ; -> "Un-pseudopc operator '&' only works on addresses."
|