]> git.sur5r.net Git - cc65/blob - libsrc/plus4/fast.s
Replace hard returns with an "else", add an error for non-IDENT tokens, and test...
[cc65] / libsrc / plus4 / fast.s
1 ;
2 ; Marco van den Heuvel, 2018-03-20
3 ;
4 ; void fast (void);
5 ; /* Switch the CPU into double clock mode. */
6 ;
7
8         .export         _fast
9
10         .include        "plus4.inc"
11
12
13 .proc   _fast
14
15         lda     TED_CLK
16         and     #%11111101
17         sta     TED_CLK
18         rts
19
20 .endproc
21
22