Merge branch 'nj7p/swtp6800-v2.1'
Conflicts: makefile swtp6800/common/bootrom.c swtp6800/common/dc-4.c swtp6800/common/i2716.c swtp6800/common/m6800.c swtp6800/common/m6810.c swtp6800/common/mp-8m.c swtp6800/common/mp-a.c swtp6800/common/mp-a2.c swtp6800/common/mp-b2.c swtp6800/common/mp-s.c swtp6800/swtp6800/mp-a2_sys.c swtp6800/swtp6800/mp-a_sys.c swtp6800/swtp6800/swtp_defs.h
This commit is contained in:
commit
66edd72ecb
4 changed files with 20 additions and 18 deletions
1
makefile
1
makefile
|
@ -839,3 +839,4 @@ swtp6800mp-a2 : ${BIN}swtp6800mp-a2${EXE}
|
|||
${BIN}swtp6800mp-a2${EXE} : ${SWTP6800MP-A2} ${SIM}
|
||||
${MKDIRBIN}
|
||||
${CC} ${SWTP6800MP-A2} ${SIM} ${SWTP6800_OPT} $(CC_OUTSPEC) ${LDFLAGS}
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* mp-s.c: SWTP MP-S serial I/O card emulator
|
||||
/* mp-s.c: SWTP MP-S serial I/O card simulator
|
||||
|
||||
Copyright (c) 2005-2011, William Beech
|
||||
|
||||
|
@ -188,6 +188,7 @@ int32 sio_reset (DEVICE *dptr)
|
|||
{
|
||||
sio_unit.buf = 0; // Data buffer
|
||||
sio_unit.u3 = 0x02; // Status buffer
|
||||
sio_unit.wait = 10000;
|
||||
sim_activate (&sio_unit, sio_unit.wait); // activate unit
|
||||
return SCPE_OK;
|
||||
}
|
||||
|
@ -198,8 +199,8 @@ int32 ptr_reset (DEVICE *dptr)
|
|||
{
|
||||
ptr_unit.buf = 0;
|
||||
ptr_unit.u3 = 0x02;
|
||||
sim_activate (&ptr_unit, ptr_unit.wait); // activate unit
|
||||
// sim_cancel (&ptr_unit); // deactivate unit
|
||||
// sim_activate (&ptr_unit, ptr_unit.wait); // activate unit
|
||||
sim_cancel (&ptr_unit); // deactivate unit
|
||||
return SCPE_OK;
|
||||
}
|
||||
|
||||
|
@ -209,8 +210,8 @@ int32 ptp_reset (DEVICE *dptr)
|
|||
{
|
||||
ptp_unit.buf = 0;
|
||||
ptp_unit.u3 = 0x02;
|
||||
sim_activate (&ptp_unit, ptp_unit.wait); // activate unit
|
||||
// sim_cancel (&ptp_unit); // deactivate unit
|
||||
// sim_activate (&ptp_unit, ptp_unit.wait); // activate unit
|
||||
sim_cancel (&ptp_unit); // deactivate unit
|
||||
return SCPE_OK;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue