1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-07 23:29:39 +00:00

Add comments.

This commit is contained in:
Piotr Fusik 2018-03-08 22:10:11 +01:00
parent a32c50a6bc
commit 970c5f6184

View File

@ -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