mirror of
https://github.com/cc65/cc65.git
synced 2024-10-31 20:06:11 +00:00
0390c34e88
The left side doesn't look unbalanced.
24 lines
319 B
ArmAsm
24 lines
319 B
ArmAsm
;
|
|
; 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
|
|
|
|
|