]> git.sur5r.net Git - cc65/blob - compl.s
5e9626321bdaea13087e608a70ffd91400171e06
[cc65] / compl.s
1 ;
2 ; Ullrich von Bassewitz, 06.08.1998
3 ;
4 ; CC65 runtime: integer complement
5 ;
6
7         .export         complax
8
9 complax:
10         eor     #$FF            ; Not A
11         pha
12         txa
13         eor     #$FF            ; Not X
14         tax
15         pla
16         rts
17