]> git.sur5r.net Git - cc65/blob - libsrc/serial/ser_put.s
Use "override" when appending to CFLAGS, so this works even when CFLAGS is
[cc65] / libsrc / serial / ser_put.s
1 ;
2 ; Ullrich von Bassewitz, 2003-04-18
3 ;
4 ; unsigned char __fastcall__ ser_put (char b);
5 ; /* Send a character via the serial port. There is a transmit buffer, but
6 ;  * transmitting is not done via interrupt. The function returns
7 ;  * SER_ERR_OVERFLOW if there is no space left in the transmit buffer.
8 ;  */
9
10
11         .include        "ser-kernel.inc"
12
13         _ser_put        = ser_put
14