1
0
mirror of https://github.com/simh/simh.git synced 2026-04-30 21:38:32 +00:00

Intel-Systems: Cleanup compile error/warnings

This commit is contained in:
Bill Beech
2019-10-18 16:12:49 -07:00
parent aff3346eae
commit e99d731b8a
30 changed files with 158 additions and 158 deletions

View File

@@ -48,12 +48,12 @@ void put_mword(uint16 addr, uint16 val);
/* external globals */
extern uint8 i8255_C[4]; //port C byte I/O
extern DEVICE *i8080_dev;
extern DEVICE *i8251_dev;
extern DEVICE *i8255_dev;
extern DEVICE *EPROM_dev;
extern DEVICE i8080_dev;
extern DEVICE i8251_dev;
extern DEVICE i8255_dev;
extern DEVICE EPROM_dev;
extern UNIT EPROM_unit;
extern DEVICE *RAM_dev;
extern DEVICE RAM_dev;
extern UNIT RAM_unit;
/* external function prototypes */
@@ -99,9 +99,9 @@ t_stat SBC_reset (DEVICE *dptr)
multibus_cfg();
onetime++;
}
i8080_reset(i8080_dev);
i8251_reset(i8251_dev);
i8255_reset(i8255_dev);
i8080_reset(&i8080_dev);
i8251_reset(&i8251_dev);
i8255_reset(&i8255_dev);
return SCPE_OK;
}

View File

@@ -76,7 +76,7 @@
/* set the base I/O address for the iSBC 208 */
#define SBC208_BASE 0x40
#define SBC208_INT INT_2
#define SBC208_NUM 1
#define SBC208_NUM 0
/* set the base for the zx-200a disk controller */
#define ZX200A_BASE 0x78