1
0
mirror of https://github.com/cc65/cc65.git synced 2024-12-27 00:29:31 +00:00

Comment fixes by Stefan Haubenthal

git-svn-id: svn://svn.cc65.org/cc65/trunk@3061 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz 2004-05-31 19:35:30 +00:00
parent df4289cd34
commit 5fc98bd69a
2 changed files with 4 additions and 4 deletions

View File

@ -607,7 +607,7 @@ LINE:
jsr abs
sta NY
sty NY+1
; if (x2>x1)
; if (x2>=x1)
ldx #X2
lda X1
ldy X1+1
@ -620,7 +620,7 @@ LINE:
; dx = -1;
@L0243: lda #$ff
@L0244: sta DX
; if (y2>y1)
; if (y2>=y1)
ldx #Y2
lda Y1
ldy Y1+1

View File

@ -605,7 +605,7 @@ LINE:
jsr abs
sta NY
sty NY+1
; if (x2>x1)
; if (x2>=x1)
ldx #X2
lda X1
ldy X1+1
@ -618,7 +618,7 @@ LINE:
; dx = -1;
@L0243: lda #$ff
@L0244: sta DX
; if (y2>y1)
; if (y2>=y1)
ldx #Y2
lda Y1
ldy Y1+1