Starting the SBC instruction

This commit is contained in:
Anonymus Raccoon
2020-02-25 23:32:19 +01:00
parent 4da96894ae
commit a421ef693f
2 changed files with 7 additions and 1 deletions
@@ -26,4 +26,9 @@ namespace ComSquare::CPU
this->_registers.p.z = this->_registers.a == 0;
this->_registers.p.n = this->_registers.a & negativeMask;
}
void CPU::SBC(uint24_t valueAddr)
{
}
}