mirror of
https://github.com/zoriya/ComSquare.git
synced 2026-05-30 01:05:34 +00:00
Adding 8-bit Data Transmission Operations and so every instructions are done
Forgot an instruction in _executeInstruction function
This commit is contained in:
@@ -47,6 +47,14 @@ namespace ComSquare::APU
|
||||
return addr;
|
||||
}
|
||||
|
||||
uint24_t APU::_getDirectAddrByY()
|
||||
{
|
||||
uint24_t addr = this->_getDirectAddr();
|
||||
|
||||
addr += this->_internalRegisters.y;
|
||||
return addr;
|
||||
}
|
||||
|
||||
uint24_t APU::_getAbsoluteAddr()
|
||||
{
|
||||
uint24_t addr1 = this->_getImmediateData();
|
||||
|
||||
Reference in New Issue
Block a user