hset             4066 src/dps8/dps8_cpu.c static void add_history (cpu_state_t * cpup, uint hset, word36 w0, word36 w1)
hset             4070 src/dps8/dps8_cpu.c         cpu.history [hset] [cpu.history_cyclic[hset]] [0] = w0;
hset             4071 src/dps8/dps8_cpu.c         cpu.history [hset] [cpu.history_cyclic[hset]] [1] = w1;
hset             4072 src/dps8/dps8_cpu.c         cpu.history_cyclic[hset] = (cpu.history_cyclic[hset] + 1) % N_MODEL_HIST_SIZE;
hset             4076 src/dps8/dps8_cpu.c void add_history_force (cpu_state_t * cpup, uint hset, word36 w0, word36 w1)
hset             4078 src/dps8/dps8_cpu.c     cpu.history [hset] [cpu.history_cyclic[hset]] [0] = w0;
hset             4079 src/dps8/dps8_cpu.c     cpu.history [hset] [cpu.history_cyclic[hset]] [1] = w1;
hset             4080 src/dps8/dps8_cpu.c     cpu.history_cyclic[hset] = (cpu.history_cyclic[hset] + 1) % N_MODEL_HIST_SIZE;
hset             2392 src/dps8/dps8_cpu.h void add_history_force (cpu_state_t * cpup, uint hset, word36 w0, word36 w1);
hset             7497 src/dps8/dps8_ins.c                       for (uint hset = 0; hset < N_HIST_SETS; hset ++)
hset             7498 src/dps8/dps8_ins.c                          cpu.history_cyclic[hset] = 0;