Simplification of M6502 flag set/reset code

This commit is contained in:
Adrian Conlon
2024-01-07 14:04:41 +00:00
parent 7eca073a6e
commit 4f4bc5355d
3 changed files with 57 additions and 57 deletions

View File

@@ -13,8 +13,8 @@ EightBit::Processor::Processor(const Processor& rhs)
PC() = rhs.PC();
}
DEFINE_PIN_LEVEL_CHANGERS(RESET, Processor);
DEFINE_PIN_LEVEL_CHANGERS(INT, Processor);
DEFINE_PIN_LEVEL_CHANGERS(RESET, Processor)
DEFINE_PIN_LEVEL_CHANGERS(INT, Processor)
void EightBit::Processor::handleRESET() noexcept {
raiseRESET();