mirror of
https://github.com/cc65/cc65.git
synced 2024-10-31 20:06:11 +00:00
4aa19494f5
As discussed in https://github.com/cc65/cc65/pull/452 after my premature merge the two functions in question don't work as expected. Additionally I adjusted several style deviations in the pull request in question.
15 lines
316 B
ArmAsm
15 lines
316 B
ArmAsm
;
|
|
; unsigned char __fastcall__ kbrepeat (unsigned char mode);
|
|
;
|
|
|
|
.export _kbrepeat
|
|
|
|
.include "vic20.inc"
|
|
|
|
_kbrepeat:
|
|
ldx KBDREPEAT ; get old value
|
|
sta KBDREPEAT ; store new value
|
|
txa ; return old value
|
|
ldx #0
|
|
rts
|