Files
acme/testing/errors/nopseudopccontext3.a
T
marcobaye 45bb65d74d Un-pseudopc-operator '&' can now be applied to all address symbols, not only
to implicitly defined labels.


git-svn-id: https://svn.code.sf.net/p/acme-crossass/code-0/trunk@354 4df02467-bbd4-4a76-a152-e7ce94205b78
2024-03-03 14:31:08 +00:00

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."