mirror of
https://github.com/simh/simh.git
synced 2026-01-11 23:52:58 +00:00
PDP11 and Unibus VAXen: Make CH device local variables static
This avoids potential namespace collisions that can interact with libedit and ncurses on some platforms.
This commit is contained in:
parent
3fc0a38fc5
commit
2e7a109bb8
@ -61,7 +61,7 @@
|
||||
#define STATUS_BITS (TIE|LOOP|SPY|RXIE|TXIE|TXA|TXD|LOST|CRC|RXD)
|
||||
#define COMMAND_BITS (TIE|LOOP|SPY|RXIE|TXIE)
|
||||
|
||||
BITFIELD ch_csr_bits[] = {
|
||||
static BITFIELD ch_csr_bits[] = {
|
||||
BIT(TIE),
|
||||
BIT(LOOP),
|
||||
BIT(SPY),
|
||||
@ -87,19 +87,28 @@ BITFIELD ch_csr_bits[] = {
|
||||
#define DBG_INT 0x0010
|
||||
#define DBG_ERR 0x0020
|
||||
|
||||
t_stat ch_svc(UNIT *);
|
||||
t_stat ch_reset (DEVICE *);
|
||||
t_stat ch_attach (UNIT *, CONST char *);
|
||||
t_stat ch_detach (UNIT *);
|
||||
t_stat ch_rd(int32 *, int32, int32);
|
||||
t_stat ch_wr(int32, int32, int32);
|
||||
t_stat ch_show_peer (FILE* st, UNIT* uptr, int32 val, CONST void* desc);
|
||||
t_stat ch_set_peer (UNIT* uptr, int32 val, CONST char* cptr, void* desc);
|
||||
t_stat ch_show_node (FILE* st, UNIT* uptr, int32 val, CONST void* desc);
|
||||
t_stat ch_set_node (UNIT* uptr, int32 val, CONST char* cptr, void* desc);
|
||||
t_stat ch_help (FILE *, DEVICE *, UNIT *, int32, const char *);
|
||||
t_stat ch_help_attach (FILE *, DEVICE *, UNIT *, int32, const char *);
|
||||
const char *ch_description (DEVICE *);
|
||||
static t_stat ch_svc(UNIT *);
|
||||
static t_stat ch_reset (DEVICE *);
|
||||
static t_stat ch_attach (UNIT *, CONST char *);
|
||||
static t_stat ch_detach (UNIT *);
|
||||
static t_stat ch_rd(int32 *, int32, int32);
|
||||
static t_stat ch_wr(int32, int32, int32);
|
||||
static t_stat ch_show_peer (FILE* st, UNIT* uptr, int32 val, CONST void* desc);
|
||||
static t_stat ch_set_peer (UNIT* uptr, int32 val, CONST char* cptr, void* desc);
|
||||
static t_stat ch_show_node (FILE* st, UNIT* uptr, int32 val, CONST void* desc);
|
||||
static t_stat ch_set_node (UNIT* uptr, int32 val, CONST char* cptr, void* desc);
|
||||
static t_stat ch_help (FILE *, DEVICE *, UNIT *, int32, const char *);
|
||||
static t_stat ch_help_attach (FILE *, DEVICE *, UNIT *, int32, const char *);
|
||||
static const char *ch_description (DEVICE *);
|
||||
static int ch_checksum (const uint8 *p, int length);
|
||||
static t_stat ch_rx_word (int32 *data);
|
||||
static t_stat ch_tx_word (int data);
|
||||
static int ch_test_int (void);
|
||||
static t_stat ch_transmit ();
|
||||
static void ch_validate (const uint8 *p, int count);
|
||||
static void ch_receive (void);
|
||||
static void ch_clear (void);
|
||||
static void ch_command (int32 data);
|
||||
|
||||
#define CH11_NO_ADDRESS 0XFFFF
|
||||
|
||||
@ -111,14 +120,14 @@ static uint16 tx_count;
|
||||
static uint8 rx_buffer[512+100];
|
||||
static uint8 tx_buffer[512+100];
|
||||
|
||||
TMLN ch_lines[1] = { {0} };
|
||||
TMXR ch_tmxr = { 1, NULL, 0, ch_lines};
|
||||
static TMLN ch_lines[1] = { {0} };
|
||||
static TMXR ch_tmxr = { 1, NULL, 0, ch_lines};
|
||||
|
||||
UNIT ch_unit[] = {
|
||||
static UNIT ch_unit[] = {
|
||||
{ UDATA (&ch_svc, UNIT_IDLE|UNIT_ATTABLE, 0) },
|
||||
};
|
||||
|
||||
REG ch_reg[] = {
|
||||
static REG ch_reg[] = {
|
||||
{ GRDATADF(CSR, status, 16, 16, 0, "Control and status", ch_csr_bits), 0 },
|
||||
{ GRDATAD(RXCNT, rx_count, 16, 16, 0, "Receive word count"), REG_RO},
|
||||
{ GRDATAD(TXCNT, tx_count, 16, 16, 0, "Transmit word count"), REG_RO},
|
||||
@ -128,7 +137,7 @@ REG ch_reg[] = {
|
||||
{ GRDATAD(NODE, address, 16, 16, 0, "Node address"), REG_HRO},
|
||||
{ NULL } };
|
||||
|
||||
MTAB ch_mod[] = {
|
||||
static MTAB ch_mod[] = {
|
||||
{ MTAB_XTD|MTAB_VDV|MTAB_VALR, 010, "ADDRESS", "ADDRESS",
|
||||
&set_addr, &show_addr, NULL, "Unibus address" },
|
||||
{ MTAB_XTD|MTAB_VDV|MTAB_VALR, 0, "VECTOR", "VECTOR",
|
||||
@ -140,12 +149,12 @@ MTAB ch_mod[] = {
|
||||
{ 0 },
|
||||
};
|
||||
|
||||
DIB ch_dib = {
|
||||
static DIB ch_dib = {
|
||||
IOBA_AUTO, IOLN_CH, &ch_rd, &ch_wr,
|
||||
1, IVCL (CH), VEC_AUTO
|
||||
};
|
||||
|
||||
DEBTAB ch_debug[] = {
|
||||
static DEBTAB ch_debug[] = {
|
||||
{ "TRC", DBG_TRC, "Detailed trace" },
|
||||
{ "REG", DBG_REG, "Hardware registers" },
|
||||
{ "PKT", DBG_PKT, "Packets" },
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user