1
0
mirror of https://github.com/cc65/cc65.git synced 2025-01-10 19:29:45 +00:00

Speed up the cursor a bit

This commit is contained in:
Karri Kaksonen 2022-04-22 06:51:35 +03:00
parent c6decc7bb8
commit f4260ed7bc
2 changed files with 4 additions and 4 deletions

View File

@ -43,7 +43,7 @@
; ;
blink_time: blink_time:
.byte 140 .byte 200
.code .code
@ -181,7 +181,7 @@ umula0:
beq @L3 beq @L3
inc blink_time inc blink_time
bne @L3 bne @L3
lda #140 lda #200
sta blink_time sta blink_time
ldy #0 ldy #0
lda (cursorzone),y lda (cursorzone),y

View File

@ -43,7 +43,7 @@
; ;
blink_time: blink_time:
.byte 140 .byte 200
.code .code
@ -183,7 +183,7 @@ umula0:
beq @L3 beq @L3
inc blink_time inc blink_time
bne @L3 bne @L3
lda #140 lda #200
sta blink_time sta blink_time
ldy #0 ldy #0
lda (cursorzone),y lda (cursorzone),y