Added fast(), slow() and c64mode()

git-svn-id: svn://svn.cc65.org/cc65/trunk@1982 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz
2003-02-13 21:29:12 +00:00
parent 332c37fa04
commit 8c7400c26e
6 changed files with 74 additions and 1 deletions

22
libsrc/c128/slow.s Normal file
View File

@@ -0,0 +1,22 @@
;
; Ullrich von Bassewitz, 2003-02-13
;
; void slow (void);
; /* Switch the CPU into 1MHz mode. */
; */
;
.export _slow
.include "c128.inc"
.proc _slow
lda #$00
sta VIC_CLK_128
rts
.endproc