1
0
mirror of https://gitlab.com/camelot/kickc.git synced 2024-08-02 09:29:35 +00:00

Added two missing word fragments.

This commit is contained in:
jespergravgaard 2019-03-08 22:00:28 +01:00
parent 183494e141
commit c59f18eb82
2 changed files with 14 additions and 0 deletions

View File

@ -0,0 +1,7 @@
sec
lda {c1},x
sbc {c2}
sta {z1}
lda {c1}+1,x
sbc {c2}+1
sta {z1}+1

View File

@ -0,0 +1,7 @@
sec
lda {c1},y
sbc {c2}
sta {z1}
lda {c1}+1,y
sbc {c2}+1
sta {z1}+1