#include <bits/stdc++.h>
using namespace std;
constexpr static int b = 2000;
void append_move(int t, int y);
void append_store(int t, vector<bool> v);
void append_and(int t, int x, int y);
void append_or(int t, int x, int y);
void append_xor(int t, int x, int y);
void append_not(int t, int x);
void append_left(int t, int x, int p);
void append_right(int t, int x, int p);
void append_add(int t, int x, int y);
void construct_instructions(int s, int n, int k, int q)
{
append_print(0);
append_left(1, 0, 2);
append_print(1);
append_and(2, 0, 1);
append_print(2);
append_left(3, 2, 1);
append_print(3);
append_xor(4, 0, 3);
append_print(4);
append_not(4, 4);
append_print(4);
append_and(0, 0, 4);
append_print(0);
append_xor(5, 1, 3);
append_print(5);
append_not(5, 5);
append_print(5);
append_and(1, 1, 5);
append_print(1);
append_and(0, 1);
append_print(0);
}
Compilation message
registers.cpp: In function 'void construct_instructions(int, int, int, int)':
registers.cpp:18:9: error: 'append_print' was not declared in this scope; did you mean 'append_right'?
18 | append_print(0);
| ^~~~~~~~~~~~
| append_right
registers.cpp:37:24: error: too few arguments to function 'void append_and(int, int, int)'
37 | append_and(0, 1);
| ^
registers.cpp:7:6: note: declared here
7 | void append_and(int t, int x, int y);
| ^~~~~~~~~~