]> git.sur5r.net Git - cc65/blob - libsrc/common/putchar.s
Disable interrupts while modifying the signal table
[cc65] / libsrc / common / putchar.s
1 ;
2 ; Ullrich von Bassewitz, 2004-10-06
3 ;
4 ; int __fastcall__ putchar (int c);
5 ;
6
7         .export         _putchar
8         .import         _stdout
9         .import         _fputc
10
11
12 .code
13
14 _putchar:
15         lda     #<_stdout
16         ldx     #>_stdout
17         jmp     _fputc          ; __fastcall__ function
18
19
20