registers.cpp: In function 'void construct_instructions(int, int, int, int)':
registers.cpp:9:9: error: 'append_right' was not declared in this scope
9 | append_right(1, 0, 1);
| ^~~~~~~~~~~~
registers.cpp:10:9: error: 'append_and' was not declared in this scope
10 | append_and(0, 0, 1);
| ^~~~~~~~~~
registers.cpp:19:9: error: 'append_right' was not declared in this scope
19 | append_right(2, 1, 2); /// 2: B0, B1
| ^~~~~~~~~~~~
registers.cpp:20:9: error: 'append_left' was not declared in this scope
20 | append_left(1, 0, 1998);
| ^~~~~~~~~~~
registers.cpp:22:9: error: 'append_and' was not declared in this scope
22 | append_and(3, 1, 2); /// 3: (A0 & B0), (A1 & B1)
| ^~~~~~~~~~
registers.cpp:25:9: error: 'append_xor' was not declared in this scope
25 | append_xor(5, 1, 2);
| ^~~~~~~~~~
registers.cpp:26:9: error: 'append_not' was not declared in this scope
26 | append_not(5, 5);
| ^~~~~~~~~~
registers.cpp:39:9: error: 'append_or' was not declared in this scope
39 | append_or(8, 6, 7);
| ^~~~~~~~~