mirror of
https://github.com/cc65/cc65.git
synced 2025-04-09 10:39:40 +00:00
Add comments.
This commit is contained in:
parent
a32c50a6bc
commit
970c5f6184
@ -13,12 +13,15 @@ deceaxy:
|
||||
sec
|
||||
sbc tmp1
|
||||
bcs @L9
|
||||
; borrow from X
|
||||
dex
|
||||
cpx #$ff
|
||||
bne @L9
|
||||
; X wrapped from zero to $ff, borrow from sreg
|
||||
dec sreg
|
||||
cpx sreg
|
||||
bne @L9
|
||||
; sreg wrapped from zero to $ff, borrow from sreg+1
|
||||
dec sreg+1
|
||||
@L9: rts
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user