1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-01 13:41:34 +00:00

Update slow.s

This commit is contained in:
Stefan 2019-11-19 19:24:14 +01:00 committed by Oliver Schmidt
parent eeefd10f8f
commit 9d4d00737e

View File

@ -1,22 +1 @@
;
; Marco van den Heuvel, 2018-03-28
;
; void slow (void);
; /* Switch the CPU into single clock mode. */
;
.export _slow
.include "plus4.inc"
.proc _slow
lda TED_CLK
ora #%00000010
sta TED_CLK
rts
.endproc
.include "../plus4/slow.s"