AltairZ80: Added Morrow Disk Jockey disk controller

This commit is contained in:
Peter Schorn 2021-01-03 14:24:30 +01:00
parent 5e539dc0b2
commit 2911b3a440
5 changed files with 2078 additions and 0 deletions

View file

@ -69,6 +69,7 @@ extern DEVICE hdc1001_dev;
extern DEVICE jade_dev; extern DEVICE jade_dev;
extern DEVICE tarbell_dev; extern DEVICE tarbell_dev;
extern DEVICE icom_dev; extern DEVICE icom_dev;
extern DEVICE dj2d_dev;
extern DEVICE m2sio0_dev; extern DEVICE m2sio0_dev;
extern DEVICE m2sio1_dev; extern DEVICE m2sio1_dev;
extern DEVICE pmmi_dev; extern DEVICE pmmi_dev;
@ -130,6 +131,8 @@ DEVICE *sim_devices[] = {
&tarbell_dev, &tarbell_dev,
/* iCOM Devices */ /* iCOM Devices */
&icom_dev, &icom_dev,
/* Disk Jockey 2D Devices */
&dj2d_dev,
/* MITS 88-2SIO */ /* MITS 88-2SIO */
&m2sio0_dev, &m2sio0_dev,
&m2sio1_dev, &m2sio1_dev,

2070
AltairZ80/s100_dj2d.c Normal file

File diff suppressed because it is too large Load diff

View file

@ -315,6 +315,10 @@
RelativePath="..\AltairZ80\s100_disk3.c" RelativePath="..\AltairZ80\s100_disk3.c"
> >
</File> </File>
<File
RelativePath="..\AltairZ80\s100_dj2d.c"
>
</File>
<File <File
RelativePath="..\AltairZ80\s100_fif.c" RelativePath="..\AltairZ80\s100_fif.c"
> >

Binary file not shown.

View file

@ -1739,6 +1739,7 @@ ALTAIR_OPT = -I ${ALTAIRD}
ALTAIRZ80D = ${SIMHD}/AltairZ80 ALTAIRZ80D = ${SIMHD}/AltairZ80
ALTAIRZ80 = ${ALTAIRZ80D}/altairz80_cpu.c ${ALTAIRZ80D}/altairz80_cpu_nommu.c \ ALTAIRZ80 = ${ALTAIRZ80D}/altairz80_cpu.c ${ALTAIRZ80D}/altairz80_cpu_nommu.c \
${ALTAIRZ80D}/s100_dj2d.c \
${ALTAIRZ80D}/altairz80_dsk.c ${ALTAIRZ80D}/disasm.c \ ${ALTAIRZ80D}/altairz80_dsk.c ${ALTAIRZ80D}/disasm.c \
${ALTAIRZ80D}/altairz80_sio.c ${ALTAIRZ80D}/altairz80_sys.c \ ${ALTAIRZ80D}/altairz80_sio.c ${ALTAIRZ80D}/altairz80_sys.c \
${ALTAIRZ80D}/altairz80_hdsk.c ${ALTAIRZ80D}/altairz80_net.c \ ${ALTAIRZ80D}/altairz80_hdsk.c ${ALTAIRZ80D}/altairz80_net.c \