some progress

This commit is contained in:
aljazbrodar. 2025-12-04 14:49:32 +01:00
parent 618e4dd361
commit 5c6d1b22f6
7 changed files with 65 additions and 13 deletions

View file

@ -53,11 +53,19 @@ public:
void notImplemented(string mnemonic);
// Izvajalnik je naletel na operacijsko kodo ukaza, ki ni veljavna.
void invalidOpcode(int opcode);
// Neveljavno naslavljanje.
void invalidAddressing();
int fetch();
void execute();
bool execF1(int opcode);
bool execF2(int opcode, int operand);
bool execSICF3F4(int opcode, int ni, int operand);
};
#endif