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:
23
libsrc/c128/fast.s
Normal file
23
libsrc/c128/fast.s
Normal file
@@ -0,0 +1,23 @@
|
||||
;
|
||||
; Ullrich von Bassewitz, 2003-02-13
|
||||
;
|
||||
; void fast (void);
|
||||
; /* Switch the CPU into 2MHz mode. Note: This will disable video when in
|
||||
; * 40 column mode.
|
||||
; */
|
||||
;
|
||||
|
||||
.export _fast
|
||||
|
||||
.include "c128.inc"
|
||||
|
||||
|
||||
.proc _fast
|
||||
|
||||
lda #$01
|
||||
sta VIC_CLK_128
|
||||
rts
|
||||
|
||||
.endproc
|
||||
|
||||
|
||||
Reference in New Issue
Block a user