mirror of
https://github.com/cc65/cc65.git
synced 2025-04-05 13:37:17 +00:00
Support randomize().
In order to have randomize() work as expected (and the Apple II random number generation in general) it is necessary to update the random counter during keypress wait just like the ROM function does.
This commit is contained in:
parent
b6ccd4d5d4
commit
73faf60fe0
@ -25,8 +25,11 @@ _cgetc:
|
||||
jsr putchardirect ; Returns old character in X
|
||||
|
||||
; Wait for keyboard strobe.
|
||||
: inc RNDL ; Increment random counter low
|
||||
bne :+
|
||||
inc RNDH ; Increment random counter high
|
||||
: lda KBD
|
||||
bpl :- ; If < 128, no key pressed
|
||||
bpl :-- ; If < 128, no key pressed
|
||||
|
||||
; Cursor on ?
|
||||
ldy cursor
|
||||
|
Loading…
x
Reference in New Issue
Block a user