r65emu/acia.h

41 lines
1.2 KiB
C
Raw Normal View History

2014-11-10 14:16:45 +00:00
#ifndef __ACIA_H__
#define __ACIA_H__
2014-10-18 11:33:48 +00:00
struct acia {
2014-11-10 14:16:45 +00:00
2018-08-13 13:41:23 +00:00
// status bits
2014-11-10 14:16:45 +00:00
//
2018-08-13 13:41:23 +00:00
static const uint8_t rdrf = 1 << 0;
static const uint8_t tdre = 1 << 1;
static const uint8_t dcd = 1 << 2;
static const uint8_t cts = 1 << 3;
static const uint8_t fe = 1 << 4;
static const uint8_t ovrn = 1 << 5;
static const uint8_t pc = 1 << 6;
static const uint8_t irq = 1 << 7;
2014-10-18 11:33:48 +00:00
2014-11-10 14:16:45 +00:00
// control operations (four combinable groups)
//
2018-08-13 13:41:23 +00:00
static const uint8_t cd1 = 0x00; // divide by 1
static const uint8_t cd16 = 0x01; // divide by 16
static const uint8_t cd64 = 0x02; // divide by 64
static const uint8_t reset = 0x03; // master reset
2014-10-18 11:33:48 +00:00
2018-08-13 13:41:23 +00:00
static const uint8_t ws7e2 = 0 << 2; // parity
static const uint8_t ws7o2 = 1 << 2;
static const uint8_t ws7e1 = 2 << 2;
static const uint8_t ws7o1 = 3 << 2;
static const uint8_t ws8n2 = 4 << 2;
static const uint8_t ws8n1 = 5 << 2;
static const uint8_t ws8e1 = 6 << 2;
static const uint8_t ws8o1 = 7 << 2;
2014-10-18 11:33:48 +00:00
2018-08-13 13:41:23 +00:00
static const uint8_t lrts_dti = 0 << 5; // /rts, disable trans irq
static const uint8_t lrts_eti = 1 << 5; // /rts, enable
static const uint8_t hrts_dti = 2 << 5; // rts, disable
static const uint8_t lrts_dti_brk = 3 << 5; // /rts, disable, send brk
2014-10-18 11:33:48 +00:00
2018-08-13 13:41:23 +00:00
static const uint8_t eri = 1 << 7; // enable receive interrupt
2014-10-18 11:33:48 +00:00
};
2014-11-10 14:16:45 +00:00
#endif