1
0
mirror of https://github.com/rcornwell/sims.git synced 2026-01-13 15:27:04 +00:00

SCP: Updated readme and makefile

This commit is contained in:
Richard Cornwell 2018-09-05 23:38:15 -04:00
parent 3a381e56f2
commit 5bd9df738e
2 changed files with 9 additions and 3 deletions

View File

@ -49,8 +49,9 @@ To do:
# ICL 1900 simulator.
This is a new simulator. It will not quite pass instruction test. Divide does not work
also Floating point instructions are not complete.
This is a new simulator. Will pass 1904E/1905E CPU diagnostics (FLIT). Will boot paper
tape executive E4BM and tape executive E6RM. Still need to add more devices and test
with Goerge 2 and 3.
# IBM 360 simulator.

View File

@ -1087,7 +1087,12 @@ DISPLAYD = display
# Emulator source files and compile time options
#
ICL1900D = ICL1900
ICL1900 = ${ICL1900D}/icl1900_cpu.c ${ICL1900D}/icl1900_sys.c
ICL1900 = ${ICL1900D}/icl1900_cpu.c ${ICL1900D}/icl1900_sys.c \
${ICL1900D}/icl1900_stdio.c ${ICL1900D}/icl1900_cty.c \
${ICL1900D}/icl1900_tr.c ${ICL1900D}/icl1900_tp.c \
${ICL1900D}/icl1900_mta.c ${ICL1900D}/icl1900_lp.c \
${ICL1900D}/icl1900_mt.c
ICL1900_OPT = -I $(ICL1900D) -DICL1900 -DUSE_SIM_CARD
IBM360D = IBM360