Open ksherlock opened 4 years ago
rastan source code uses dw ^$00
dw ^$00
merlin apparently treats that as the unary ^ operator. qasm treats it as a label character.
dw #^$00 is a workaround for qasm
dw #^$00
^ is a legitimate label character (thanks, merlin).
LUP directive affects the line number.
LUP
dw $-280 apparently treated as dw -280 in merlin, syntax error in qasm.
dw $-280
dw -280
rastan source code uses
dw ^$00
merlin apparently treats that as the unary ^ operator. qasm treats it as a label character.
dw #^$00
is a workaround for qasm^ is a legitimate label character (thanks, merlin).