hset             3947 src/dps8/dps8_cpu.c static void add_history (uint hset, word36 w0, word36 w1)
hset             3951 src/dps8/dps8_cpu.c         cpu.history [hset] [cpu.history_cyclic[hset]] [0] = w0;
hset             3952 src/dps8/dps8_cpu.c         cpu.history [hset] [cpu.history_cyclic[hset]] [1] = w1;
hset             3953 src/dps8/dps8_cpu.c         cpu.history_cyclic[hset] = (cpu.history_cyclic[hset] + 1) % N_MODEL_HIST_SIZE;
hset             3957 src/dps8/dps8_cpu.c void add_history_force (uint hset, word36 w0, word36 w1)
hset             3959 src/dps8/dps8_cpu.c     cpu.history [hset] [cpu.history_cyclic[hset]] [0] = w0;
hset             3960 src/dps8/dps8_cpu.c     cpu.history [hset] [cpu.history_cyclic[hset]] [1] = w1;
hset             3961 src/dps8/dps8_cpu.c     cpu.history_cyclic[hset] = (cpu.history_cyclic[hset] + 1) % N_MODEL_HIST_SIZE;
hset             2380 src/dps8/dps8_cpu.h void add_history_force (uint hset, word36 w0, word36 w1);
hset             7143 src/dps8/dps8_ins.c                       for (uint hset = 0; hset < N_HIST_SETS; hset ++)
hset             7144 src/dps8/dps8_ins.c                          cpu.history_cyclic[hset] = 0;