]> git.sur5r.net Git - cc65/blob - libsrc/serial/ser_open.s
Replace hard returns with an "else", add an error for non-IDENT tokens, and test...
[cc65] / libsrc / serial / ser_open.s
1 ;
2 ; Ullrich von Bassewitz, 2003-08-22
3 ;
4 ; unsigned char __fastcall__ ser_open (const struct ser_params* params);
5 ; /* "Open" the port by setting the port parameters and enable interrupts. */
6
7
8
9         .importzp       ptr1
10
11         .include        "ser-kernel.inc"
12
13
14
15 .proc   _ser_open
16
17         sta     ptr1
18         stx     ptr1+1                  ; Save pointer to params
19         jmp     ser_open                ; Call the driver
20
21 .endproc
22
23
24