]> git.sur5r.net Git - cc65/blob - libsrc/c128/slow.s
Made the code that logs indirect-goto referals be a little more efficient.
[cc65] / libsrc / c128 / slow.s
1 ;
2 ; Ullrich von Bassewitz, 2003-02-13
3 ;
4 ; void slow (void);
5 ; /* Switch the CPU into 1MHz mode. */
6 ;  */
7 ;
8
9         .export         _slow
10
11         .include        "c128.inc"
12
13
14 .proc   _slow
15
16         lda     #$00
17         sta     VIC_CLK_128
18         rts
19
20 .endproc
21
22