]> git.sur5r.net Git - cc65/blob - asminc/ser-kernel.inc
5d448775f2bcd2549b825edc410790d6d137717c
[cc65] / asminc / ser-kernel.inc
1 ;****************************************************************************
2 ;*                                                                          *
3 ;*                              ser-kernel.inc                              *
4 ;*                                                                          *
5 ;*                        Serial communication API                          *
6 ;*                                                                          *
7 ;*                                                                          *
8 ;*                                                                          *
9 ;*(C) 2003-2006, Ullrich von Bassewitz                                      *
10 ;*               Römerstrasse 52                                            *
11 ;*               D-70794 Filderstadt                                        *
12 ;*EMail:         uz@cc65.org                                                *
13 ;*                                                                          *
14 ;*                                                                          *
15 ;*This software is provided 'as-is', without any expressed or implied       *
16 ;*warranty.  In no event will the authors be held liable for any damages    *
17 ;*arising from the use of this software.                                    *
18 ;*                                                                          *
19 ;*Permission is granted to anyone to use this software for any purpose,     *
20 ;*including commercial applications, and to alter it and redistribute it    *
21 ;*freely, subject to the following restrictions:                            *
22 ;*                                                                          *
23 ;*1. The origin of this software must not be misrepresented; you must not   *
24 ;*   claim that you wrote the original software. If you use this software   *
25 ;*   in a product, an acknowledgment in the product documentation would be  *
26 ;*   appreciated but is not required.                                       *
27 ;*2. Altered source versions must be plainly marked as such, and must not   *
28 ;*   be misrepresented as being the original software.                      *
29 ;*3. This notice may not be removed or altered from any source              *
30 ;*   distribution.                                                          *
31 ;*                                                                          *
32 ;****************************************************************************
33
34
35
36 ;------------------------------------------------------------------------------
37 ; The driver header
38
39 .struct SER_HDR
40         ID      .byte   3       ; Contains 0x73, 0x65, 0x72 ("ser")
41         VERSION .byte   1       ; Interface version
42         JUMPTAB .struct
43             INSTALL     .word   ; INSTALL routine
44             UNINSTALL   .word   ; UNINSTALL routine
45             OPEN        .word   ; OPEN routine
46             CLOSE       .word   ; CLOSE routine
47             GET         .word   ; GET routine
48             PUT         .word   ; PUT routine
49             STATUS      .word   ; STATUS routine
50             IOCTL       .word   ; IOCTL routine
51             IRQ         .word   ; IRQ routine
52         .endstruct
53 .endstruct
54
55
56 ;------------------------------------------------------------------------------
57 ; The SER API version, stored SER_HDR::VERSION
58
59 SER_API_VERSION         = $00
60
61 ;------------------------------------------------------------------------------
62 ; ser_params
63
64 .struct SER_PARAMS
65         BAUDRATE        .byte           ; Baudrate
66         DATABITS        .byte           ; Number of data bits
67         STOPBITS        .byte           ; Number of stop bits
68         PARITY          .byte           ; Parity setting
69         HANDSHAKE       .byte           ; Type of handshake to use
70 .endstruct
71
72 ;------------------------------------------------------------------------------
73 ; Serial parameters
74
75 ; Baudrate
76 SER_BAUD_45_5           =       $00
77 SER_BAUD_50             =       $01
78 SER_BAUD_75             =       $02
79 SER_BAUD_110            =       $03
80 SER_BAUD_134_5          =       $04
81 SER_BAUD_150            =       $05
82 SER_BAUD_300            =       $06
83 SER_BAUD_600            =       $07
84 SER_BAUD_1200           =       $08
85 SER_BAUD_1800           =       $09
86 SER_BAUD_2400           =       $0A
87 SER_BAUD_3600           =       $0B
88 SER_BAUD_4800           =       $0C
89 SER_BAUD_7200           =       $0D
90 SER_BAUD_9600           =       $0E
91 SER_BAUD_19200          =       $0F
92 SER_BAUD_38400          =       $10
93 SER_BAUD_57600          =       $11
94 SER_BAUD_115200         =       $12
95 SER_BAUD_230400         =       $13
96
97 ; Data bit settings
98 SER_BITS_5              =       $00
99 SER_BITS_6              =       $01
100 SER_BITS_7              =       $02
101 SER_BITS_8              =       $03
102
103 ; Stop bit settings
104 SER_STOP_1              =       $00
105 SER_STOP_2              =       $01
106
107 ; Parity
108 SER_PAR_NONE            =       $00
109 SER_PAR_ODD             =       $01
110 SER_PAR_EVEN            =       $02
111 SER_PAR_MARK            =       $03
112 SER_PAR_SPACE           =       $04
113
114 ; Handshake
115 SER_HS_NONE             =       $00    ; No handshake
116 SER_HS_HW               =       $01    ; Hardware (RTS/CTS) handshake
117 SER_HS_SW               =       $02    ; Software handshake
118
119 ; Bit masks to mask out things from the status returned by rs232_status
120 SER_STATUS_PE           =       $01     ; Parity error
121 SER_STATUS_FE           =       $02     ; Framing error
122 SER_STATUS_OE           =       $04     ; Overrun error
123 SER_STATUS_DCD          =       $20     ; NOT data carrier detect
124 SER_STATUS_DSR          =       $40     ; NOT data set ready
125
126 ;------------------------------------------------------------------------------
127 ; Variables
128
129         .global _ser_drv                         ; Pointer to driver
130
131 ;------------------------------------------------------------------------------
132 ; Driver entry points
133
134         .global ser_install
135         .global ser_uninstall
136         .global ser_open
137         .global ser_close
138         .global ser_get
139         .global ser_put
140         .global ser_status
141         .global ser_ioctl
142         .global ser_irq
143
144 ;------------------------------------------------------------------------------
145 ; C callable functions
146
147         .global _ser_unload
148         .global _ser_install
149         .global _ser_uninstall
150         .global _ser_open
151         .global _ser_close
152         .global _ser_get
153         .global _ser_put
154         .global _ser_status
155         .global _ser_ioctl
156
157         .global _ser_clear_ptr
158