projects
/
YACASL2.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
progが設定されていない場合、変数にNULLではなく'\0'を設定して判定するよう変更
[YACASL2.git]
/
as
/
cmd
/
XOR
/
xor_r1_r2.casl
1
;;; XOR r1,r2
2
MAIN START
3
LD GR1,A
4
LD GR2,B
5
XOR GR1,GR2
6
RET
7
A DC #3000
8
B DC #4FFF
9
END