1
0
mirror of https://gitlab.com/camelot/kickc.git synced 2024-06-03 07:29:37 +00:00

added missing fragments. closes #749

This commit is contained in:
jespergravgaard 2022-01-08 13:41:11 +01:00
parent c70a44edc8
commit 46f6690b6d
4 changed files with 44 additions and 0 deletions

View File

@ -0,0 +1,13 @@
lda {m1}
sta $fe
lda {m1}+1
sta $ff
lda ($fe),y
cmp #<{c1}
iny
lda ($fe),y
sbc #>{c1}
bvc !+
eor #$80
!:
bmi {la1}

View File

@ -0,0 +1,13 @@
lda {m1}
sta $fe
lda {m1}+1
sta $ff
lda ($fe),y
cmp #<{c1}
iny
lda ($fe),y
sbc #>{c1}
bvc !+
eor #$80
!:
bmi {la1}

View File

@ -0,0 +1,9 @@
lda ({z1}),y
cmp #<{c1}
iny
lda ({z1}),y
sbc #>{c1}
bvc !+
eor #$80
!:
bmi {la1}

View File

@ -0,0 +1,9 @@
lda ({z1}),y
cmp #<{c1}
iny
lda ({z1}),y
sbc #>{c1}
bvc !+
eor #$80
!:
bmi {la1}