forked from EtchedPixels/EmulatorKit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
16x50.h
29 lines (24 loc) · 1.1 KB
/
16x50.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
struct uart16x50;
struct uart16x50 *uart16x50_create(void);
void uart16x50_free(struct uart16x50 *uart16x50);
void uart16x50_trace(struct uart16x50 *uart16x50, int onoff);
uint8_t uart16x50_read(struct uart16x50 *uart16x50, uint8_t addr);
void uart16x50_write(struct uart16x50 *uart16x50, uint8_t addr, uint8_t val);
void uart16x50_event(struct uart16x50 *uart16x50);
void uart16x50_reset(struct uart16x50 *uart16x50);
uint8_t uart16x50_irq_pending(struct uart16x50 *uart16x50);
void uart16x50_attach(struct uart16x50 *uart16x50, struct serial_device *dev);
void uart16x50_dsr_timer(struct uart16x50 *uart16x50);
void uart16x50_signal_change(struct uart16x50 *uart16x50, uint8_t mcr);
void uart16x50_signal_event(struct uart16x50 *uart16x50, uint8_t msr);
void uart16x50_set_clock(struct uart16x50 *d, unsigned clock);
/* These are inverse of the actual signal level for 5v TTL */
#define MCR_DTR 0x01
#define MCR_RTS 0x02
#define MCR_OUT1 0x04
#define MCR_OUT2 0x08
/* These are inverse of the actual signal level for 5v TTL */
#define MSR_CTS 0x10
#define MSR_DSR 0x20
#define MSR_RI 0x40
#define MSR_DCD 0x80