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:
parent
df4289cd34
commit
5fc98bd69a
2 changed files with 4 additions and 4 deletions
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue