Adding 8-bit Logical Operations

Testing every current operands
This commit is contained in:
Melefo
2020-02-26 20:57:05 +01:00
parent 2776be601e
commit 27c1220ca7
10 changed files with 457 additions and 85 deletions

View File

@@ -8,7 +8,7 @@ namespace ComSquare::APU
{
int APU::BRA()
{
int8_t offset = this->_getDirectValue();
int8_t offset = this->_getImmediateData();
this->_internalRegisters.pc += offset;
return 4;