From 33a0889fe1167eaebeeac4a2884ea37f5724b9af Mon Sep 17 00:00:00 2001 From: Adrian Conlon <98398945+AdrianConlon@users.noreply.github.com> Date: Mon, 11 Mar 2024 14:45:29 +0000 Subject: [PATCH] Correct build issues with latest thirdparty --- MC6809/src/mc6809.cpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/MC6809/src/mc6809.cpp b/MC6809/src/mc6809.cpp index 9aa780e..67ca617 100644 --- a/MC6809/src/mc6809.cpp +++ b/MC6809/src/mc6809.cpp @@ -76,7 +76,7 @@ void EightBit::mc6809::handleNMI() { eat(); CC() = setBit(CC(), IF); // Disable IRQ CC() = setBit(CC(), FF); // Disable FIRQ - jump(getWordPaged(0xff, NMIvector)); + jump(Processor::getWordPaged(0xff, NMIvector)); eat(); } @@ -90,7 +90,7 @@ void EightBit::mc6809::handleINT() noexcept { saveEntireRegisterState(); eat(); CC() = setBit(CC(), IF); // Disable IRQ - jump(getWordPaged(0xff, IRQvector)); + jump(Processor::getWordPaged(0xff, IRQvector)); eat(); } @@ -105,7 +105,7 @@ void EightBit::mc6809::handleFIRQ() { eat(); CC() = setBit(CC(), IF); // Disable IRQ CC() = setBit(CC(), FF); // Disable FIRQ - jump(getWordPaged(0xff, FIRQvector)); + jump(Processor::getWordPaged(0xff, FIRQvector)); eat(); } @@ -1088,21 +1088,21 @@ void EightBit::mc6809::swi() { saveEntireRegisterState(); CC() = setBit(CC(), IF); // Disable IRQ CC() = setBit(CC(), FF); // Disable FIRQ - jump(getWordPaged(0xff, SWIvector)); + jump(Processor::getWordPaged(0xff, SWIvector)); eat(); } void EightBit::mc6809::swi2() { eat(); saveEntireRegisterState(); - jump(getWordPaged(0xff, SWI2vector)); + jump(Processor::getWordPaged(0xff, SWI2vector)); eat(); } void EightBit::mc6809::swi3() { eat(); saveEntireRegisterState(); - jump(getWordPaged(0xff, SWI3vector)); + jump(Processor::getWordPaged(0xff, SWI3vector)); eat(); }