1
0
mirror of https://github.com/simh/simh.git synced 2026-01-11 23:52:58 +00:00

AltairZ80: Add support for Morrow Micro Decision

Moved MMD and MMDM devices under Morrow Devices comment.
This commit is contained in:
Patrick Linstruth 2022-11-19 17:10:12 -08:00 committed by Mark Pizzolato
parent 78ac5b0803
commit 1af13f228b
4 changed files with 4025 additions and 0 deletions

View File

@ -75,6 +75,8 @@ extern DEVICE m2sio0_dev;
extern DEVICE m2sio1_dev;
extern DEVICE pmmi_dev;
extern DEVICE hayes_dev;
extern DEVICE mmd_dev;
extern DEVICE mmdm_dev;
extern DEVICE cromfdc_dev;
extern DEVICE wd179x_dev;
@ -137,6 +139,8 @@ DEVICE *sim_devices[] = {
/* Morrow Devices */
&dj2d_dev,
&djhdc_dev,
&mmd_dev,
&mmdm_dev,
/* MITS 88-2SIO */
&m2sio0_dev,
&m2sio1_dev,

4016
AltairZ80/mmd.c Normal file

File diff suppressed because it is too large Load Diff

View File

@ -291,6 +291,10 @@
RelativePath="..\AltairZ80\mfdc.c"
>
</File>
<File
RelativePath="..\AltairZ80\mmd.c"
>
</File>
<File
RelativePath="..\AltairZ80\n8vem.c"
>

View File

@ -1950,6 +1950,7 @@ ALTAIR_OPT = -I ${ALTAIRD}
ALTAIRZ80D = ${SIMHD}/AltairZ80
ALTAIRZ80 = ${ALTAIRZ80D}/altairz80_cpu.c ${ALTAIRZ80D}/altairz80_cpu_nommu.c \
${ALTAIRZ80D}/mmd.c \
${ALTAIRZ80D}/s100_dj2d.c \
${ALTAIRZ80D}/s100_djhdc.c \
${ALTAIRZ80D}/altairz80_dsk.c ${ALTAIRZ80D}/disasm.c \