I7000: Fixed type inconsistencies.

This commit is contained in:
Richard Cornwell 2019-12-08 15:28:01 -05:00
parent d03487d227
commit 1988a4297e
3 changed files with 2 additions and 2 deletions

View file

@ -269,7 +269,6 @@ extern DEBTAB crd_debug[];
#define UNIT_V_SET (UNIT_V_UF + 5) #define UNIT_V_SET (UNIT_V_UF + 5)
#define CHAN_SET (1 << UNIT_V_SET) #define CHAN_SET (1 << UNIT_V_SET)
extern t_value assembly[NUM_CHAN]; /* Assembly register */
/* I/O routine functions */ /* I/O routine functions */
/* Channel half of controls */ /* Channel half of controls */
/* Channel status */ /* Channel status */

View file

@ -64,7 +64,7 @@ uint8 cmd[NUM_CHAN]; /* Current command */
uint16 irqdev[NUM_CHAN]; /* Device to generate interupts uint16 irqdev[NUM_CHAN]; /* Device to generate interupts
for channel */ for channel */
uint32 chunit[NUM_CHAN]; /* Channel unit */ uint32 chunit[NUM_CHAN]; /* Channel unit */
uint32 assembly[NUM_CHAN]; /* Assembly register */ uint8 assembly[NUM_CHAN]; /* Assembly register */
uint32 chan_flags[NUM_CHAN]; /* Unit status */ uint32 chan_flags[NUM_CHAN]; /* Unit status */
extern uint8 chan_io_status[NUM_CHAN]; extern uint8 chan_io_status[NUM_CHAN];
extern uint8 inquiry; extern uint8 inquiry;

View file

@ -29,6 +29,7 @@
#define ReadP(x) (M[x]) #define ReadP(x) (M[x])
#define WriteP(x,y) if (MEM_ADDR_OK (x)) M[x] = y #define WriteP(x,y) if (MEM_ADDR_OK (x)) M[x] = y
extern t_uint64 M[MAXMEMSIZE]; extern t_uint64 M[MAXMEMSIZE];
extern t_uint64 assembly[NUM_CHAN];
/* Processor specific masks */ /* Processor specific masks */
#define ONEBIT 00200000000000LL #define ONEBIT 00200000000000LL