started up asm

This commit is contained in:
aljazbrodar. 2025-12-18 13:49:58 +01:00
parent ef273790b8
commit acce30cea1
45 changed files with 1167 additions and 728 deletions

View file

@ -266,7 +266,7 @@ bool Machine::execSICF3F4(int opcode, int ni, int operand) {
UV = (memory[UA] << 16) | (memory[UA + 1] << 8) | memory[UA + 2]; //izracunamo operand oz. uporabno vrednost
}
}
cout << "UA: " << UA << " UV: " << UV << endl;
//cout << "UA: " << UA << " UV: " << UV << endl;
switch (opcode) {
case Opcode::ADD:
setA(getA() + UV);