simh-testsetgenerator/stub
Jan-Benedict Glaw 5727609e40 STUB: Fix "non-void function does not return a value" warning
Found with Debian clang version 15.0.3-2 and LTO=1.
2022-11-07 09:14:23 -05:00
..
readme.txt Sample stub simulator. 2022-06-11 12:43:22 +02:00
stub_cpu.c Sample stub simulator. 2022-06-11 12:43:22 +02:00
stub_defs.h Sample stub simulator. 2022-06-11 12:43:22 +02:00
stub_sys.c STUB: Fix "non-void function does not return a value" warning 2022-11-07 09:14:23 -05:00

You fill in sim_instr do the instruction decoding and execution.

sim_load will typically take some input file and put it in memory.

cpu_reg should contain all machine state.

parse_sym/fprint_sym is to assemble (with DEPOSIT) and disassemble (EXAMINE-M) instructions.

sim_devices is an array of DEVICE * for peripherals.  Something like
build_dev_tab will go through the array and initialize data structures
at run time.

Refer to this: https://github.com/open-simh/simh/blob/master/doc/simh.doc

Make use of asynchronous events.  sim_activate posts a future event.
The "svc" routine will be called.