1
0
mirror of https://github.com/open-simh/simh.git synced 2026-05-04 07:08:55 +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

@@ -43,7 +43,7 @@ extern t_stat EPROM_cfg(uint16 base, uint16 size);
/* external globals */
extern DEVICE *EPROM_dev;
extern DEVICE EPROM_dev;
t_stat fp_cfg(void)
{
@@ -57,7 +57,7 @@ t_stat fp_cfg(void)
t_stat fp_reset (void)
{
EPROM_reset(EPROM_dev);
EPROM_reset(&EPROM_dev);
return SCPE_OK;
}

View File

@@ -48,8 +48,8 @@ extern uint8 i3214_monitor_do_boot(t_bool io, uint8 data, uint8 devnum);
// external globals
extern uint32 PCX; /* program counter */
extern DEVICE *i8251_dev;
extern DEVICE *EPROM1_dev;
extern DEVICE i8251_dev;
extern DEVICE EPROM1_dev;
extern uint8 monitor_boot;
// globals
@@ -69,8 +69,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;
}