1
0
mirror of https://github.com/simh/simh.git synced 2026-05-03 06:28:41 +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

@@ -49,10 +49,10 @@ extern t_stat i8251_cfg(uint8 base, uint8 size);
// external globals
extern uint32 PCX; /* program counter */
extern uint16 PCX; /* program counter */
extern UNIT EPROM1_unit; //8316 PROM
extern DEVICE *i8251_dev;
extern DEVICE *EPROM1_dev;
extern DEVICE i8251_dev;
extern DEVICE EPROM1_dev;
// globals
@@ -75,8 +75,8 @@ t_stat monitor_cfg(void)
t_stat monitor_reset (void)
{
monitor_boot = 0x00;
i8251_reset(i8251_dev);
EPROM1_reset(EPROM1_dev);
i8251_reset(&i8251_dev);
EPROM1_reset(&EPROM1_dev);
return SCPE_OK;
}