removed debug

This commit is contained in:
nick-less 2018-12-17 17:29:48 +01:00
parent ba8c909f3f
commit 20bfe754c3
1 changed files with 0 additions and 3 deletions

View File

@ -183,9 +183,6 @@ Address Cpu65816::getAddressOfOpCodeData(OpCode &opCode) {
break;
case AddressingMode::DirectPageIndirectIndexedWithY:
{
Log::vrb(LOG_TAG).str("DirectPageIndirectIndexedWithY").hex( mSystemBus.readByte(mProgramAddress.newWithOffset(1))).show();
Address firstStageAddress(0x00, mD + mSystemBus.readByte(mProgramAddress.newWithOffset(1)));
uint16_t secondStageOffset = mSystemBus.readTwoBytes(firstStageAddress);
Address thirdStageAddress(mDB, secondStageOffset);