]> cloudbase.mooo.com Git - z180-stamp.git/blame - z180/modebaud.inc
env.c needs getopt-min.h
[z180-stamp.git] / z180 / modebaud.inc
CommitLineData
30d1329e
L
1 ; equates for mode byte bit fields\r
2\r
3mb$input equ 00000001b ; device may do input\r
4mb$output equ 00000010b ; device may do output\r
5mb$in$out equ mb$input+mb$output\r
6\r
7mb$soft$baud equ 00000100b ; software selectable\r
8 ; baud rates\r
9\r
10mb$serial equ 00001000b ; device may use protocol\r
11mb$xon$xoff equ 00010000b ; XON/XOFF protocol\r
12 ; enabled\r
13\r
14baud$none equ 0 ; no baud rate associated\r
15 ; with this device\r
16baud$50 equ 1 ; 50 baud\r
17baud$75 equ 2 ; 75 baud\r
18baud$110 equ 3 ; 110 baud\r
19baud$134 equ 4 ; 134.5 baud\r
20baud$150 equ 5 ; 150 baud\r
21baud$300 equ 6 ; 300 baud\r
22baud$600 equ 7 ; 600 baud\r
23baud$1200 equ 8 ; 1200 baud\r
24baud$1800 equ 9 ; 1800 baud\r
25baud$2400 equ 10 ; 2400 baud\r
26baud$3600 equ 11 ; 3600 baud\r
27baud$4800 equ 12 ; 4800 baud\r
28baud$7200 equ 13 ; 7200 baud\r
29baud$9600 equ 14 ; 9600 baud\r
30baud$19200 equ 15 ; 19.2k baud\r
31\r