1
0
mirror of https://github.com/simh/simh.git synced 2026-04-25 03:34:34 +00:00

Intel-Systems: Reorganize for clean builds with Release targets.

This commit is contained in:
Bill Beech
2020-08-02 14:19:52 -07:00
parent 6fdc447410
commit 964cb721ed
69 changed files with 2805 additions and 425 deletions

View File

@@ -40,8 +40,8 @@ t_stat monitor_reset (void);
extern t_stat i8251_reset(DEVICE *dptr);
extern t_stat i8251_cfg(uint8 base, uint8 devnum);
extern t_stat EPROM1_reset(DEVICE *dptr);
extern t_stat EPROM1_cfg(uint16 base, uint16 size);
extern t_stat EPROM_reset(DEVICE *dptr);
extern t_stat EPROM_cfg(uint16 base, uint16 size, uint8 devnum);
extern uint8 reg_dev(uint8 (*routine)(t_bool, uint8, uint8), uint8, uint8);
extern uint8 i3214_monitor_do_boot(t_bool io, uint8 data, uint8 devnum);
@@ -49,7 +49,7 @@ extern uint8 i3214_monitor_do_boot(t_bool io, uint8 data, uint8 devnum);
extern uint32 PCX; /* program counter */
extern DEVICE i8251_dev;
extern DEVICE EPROM1_dev;
extern DEVICE EPROM_dev;
extern uint8 monitor_boot;
// globals
@@ -57,7 +57,7 @@ extern uint8 monitor_boot;
t_stat monitor_cfg(void)
{
sim_printf("Configuring MDS-800 Monitor Card\n Onboard Devices:\n");
EPROM1_cfg(ROM1_BASE, ROM1_SIZE);
EPROM_cfg(ROM_BASE_1, ROM_SIZE_1, 1);
i8251_cfg(I8251_BASE_0, 0);
i8251_cfg(I8251_BASE_1, 1);
return SCPE_OK;
@@ -70,7 +70,7 @@ t_stat monitor_reset (void)
{
monitor_boot = 0x00;
i8251_reset(&i8251_dev);
EPROM1_reset(&EPROM1_dev);
EPROM_reset(&EPROM_dev);
return SCPE_OK;
}