simh-testsetgenerator/AltairZ80/CMakeLists.txt
Patrick Linstruth 3b4333dfcc ALTAIRZ80: Adds JAIR devices to simulator
Josh's Altair/IMSAI Replacement (JAIR) is a single board computer
(SBC) for the S100 bus. I created this device to assist a friend
with getting IMP and CBBS working on his JAIR. Without having a
JAIR myself, AltairZ80 to the rescue!

The following devices are added:

JAIR   - The main JAIR board I/O and ROM
JAIRS0 - Serial Port 0 (COM1)
JAIRS1 - Serial Port 1 (COM2)
JAIRP  - Parallel Port

This was a bit challenging because the JAIR uses an on-board SD
card with FAT file system to hold its BIOS and CP/M disk images.
The ATTACH command is used to mount SD card images to the
simulator. The simulator emulates the SD card interface for
read/writing SD card sectors. These images are easily mounted on
a Mac making moving files around easy. I do not know about Windows.
These same images can be written to an SD card and used with real
JAIR hardware, which may be useful for JAIR owners.

The serial and parallel ports fully support TMXR. Host serial ports
and sockets may be attached to these devices.

I am working on a GitHub repository containing an SD card image and
init script that will boot CP/M 2.2 on the JAIR simulator.

Is this device one that should be added to AltairZ80?
2024-02-01 12:52:41 -05:00

82 lines
1.9 KiB
CMake

## AltairZ80 simulator
##
## This is an automagically generated file. Do NOT EDIT.
## Any changes you make will be overwritten!!
##
## Make changes to the SIMH top-level makefile and then run the
## "cmake/generate.py" script to regenerate these files.
##
## cd cmake; python -m generate --help
##
## ------------------------------------------------------------
if (HAVE_UNITY_FRAMEWORK AND EXISTS "${CMAKE_CURRENT_SOURCE_DIR}/unit-tests/CMakeLists.txt")
add_subdirectory(unit-tests)
endif ()
add_simulator(altairz80
SOURCES
altairz80_cpu.c
altairz80_cpu_nommu.c
s100_jair.c
sol20.c
s100_vdm1.c
mmd.c
s100_dj2d.c
s100_djhdc.c
altairz80_dsk.c
disasm.c
altairz80_sio.c
altairz80_sys.c
altairz80_hdsk.c
altairz80_net.c
s100_hayes.c
s100_2sio.c
s100_pmmi.c
flashwriter2.c
i86_decode.c
i86_ops.c
i86_prim_ops.c
i8272.c
insnsd.c
altairz80_mhdsk.c
ibc.c
ibc_mcc_hdc.c
ibc_smd_hdc.c
mfdc.c
n8vem.c
vfdhd.c
s100_disk1a.c
s100_disk2.c
s100_disk3.c
s100_fif.c
s100_mdriveh.c
s100_icom.c
s100_jadedd.c
s100_mdsa.c
s100_mdsad.c
s100_selchan.c
s100_ss1.c
s100_64fdc.c
s100_scp300f.c
s100_tarbell.c
s100_tdd.c
wd179x.c
s100_hdc1001.c
s100_if3.c
s100_adcs6.c
m68k/m68kcpu.c
m68k/m68kdasm.c
m68k/m68kasm.c
m68k/m68kopac.c
m68k/m68kopdm.c
m68k/softfloat/softfloat.c
m68k/m68kopnz.c
m68k/m68kops.c
m68ksim.c
INCLUDES
${CMAKE_CURRENT_SOURCE_DIR}
FEATURE_VIDEO
LABEL AltairZ80
PKG_FAMILY altairz80_family
TEST altairz80)