1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19 void tidy_cu (cpu_state_t * cpup);
20 void cu_safe_store(cpu_state_t * cpup);
21 #if defined(MATRIX)
22 void initializeTheMatrix (void);
23 void addToTheMatrix (uint32 opcode, bool opcodeX, bool a, word6 tag);
24 t_stat display_the_matrix (int32 arg, const char * buf);
25 #endif
26 t_stat prepareComputedAddress (void);
27 void cu_safe_restore(cpu_state_t * cpup);
28 void fetchInstruction(cpu_state_t * cpup, word18 addr);
29 t_stat executeInstruction (cpu_state_t * cpup);
30 NO_RETURN void doRCU (cpu_state_t * cpup);
31 void traceInstruction (uint flag);
32 bool tstOVFfault (cpu_state_t * cpup);
33 bool chkOVF (cpu_state_t * cpup);