more cleanup, joystick works again

This commit is contained in:
mrdudz
2015-07-12 14:27:24 +02:00
parent 21999b081f
commit 891cb97b2f
27 changed files with 822 additions and 919 deletions

View File

@@ -1,17 +1,15 @@
;
; Ullrich von Bassewitz, 21.09.1998
;
; clock_t clock (void);
;
.include "pcengine.inc"
.include "pce.inc"
.export _clock
.export _clock
.importzp sreg
.proc _clock
ldy #0 ; Byte 3 is always zero
.proc _clock
ldy #0 ; Byte 3 is always zero
sty sreg+1
sty sreg
@@ -20,4 +18,3 @@
rts
.endproc