1
0
mirror of https://github.com/simh/simh.git synced 2026-04-24 19:33:40 +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;
}