]> git.sur5r.net Git - cc65/blob - libsrc/plus4/slow.s
Add translation from PETSCII to screen codes.
[cc65] / libsrc / plus4 / slow.s
1 ;
2 ; Marco van den Heuvel, 2018-03-28
3 ;
4 ; void slow (void);
5 ; /* Switch the CPU into single clock mode. */
6 ;
7
8         .export         _slow
9
10         .include        "plus4.inc"
11
12
13 .proc   _slow
14
15         lda     TED_CLK
16         ora     #%00000010
17         sta     TED_CLK
18         rts
19
20 .endproc
21
22