Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

AltairZ80: Adds Cromemco DAZZLER and JS1 devices #373

Merged
merged 1 commit into from
Jun 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions AltairZ80/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ add_simulator(altairz80
SOURCES
altairz80_cpu.c
altairz80_cpu_nommu.c
s100_dazzler.c
s100_jair.c
sol20.c
s100_vdm1.c
Expand Down
5 changes: 5 additions & 0 deletions AltairZ80/altairz80_sys.c
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,8 @@ extern DEVICE m2sio0_dev;
extern DEVICE m2sio1_dev;
extern DEVICE pmmi_dev;
extern DEVICE hayes_dev;
extern DEVICE daz_dev;
extern DEVICE js1_dev;
extern DEVICE jair_dev;
extern DEVICE jairs0_dev;
extern DEVICE jairs1_dev;
Expand Down Expand Up @@ -175,6 +177,9 @@ DEVICE *sim_devices[] = {
&pmmi_dev,
/* HAYES MODEM */
&hayes_dev,
/* IDE/CF */
&daz_dev,
&js1_dev,
/* JAIR SBC */
&jair_dev,
&jairs0_dev,
Expand Down
Loading
Loading