mirror of
https://github.com/MoleskiCoder/EightBit.git
synced 2024-12-23 15:29:24 +00:00
Whoops: missed UNLIKELY specifier on the 6502 processor
Signed-off-by: Adrian Conlon <Adrian.conlon@gmail.com>
This commit is contained in:
parent
ae66b39dac
commit
535346dede
@ -53,7 +53,7 @@ int EightBit::MOS6502::step() {
|
||||
if (UNLIKELY(lowered(SO()))) {
|
||||
handleSO();
|
||||
}
|
||||
if (lowered(RESET())) {
|
||||
if (UNLIKELY(lowered(RESET()))) {
|
||||
handleRESET();
|
||||
} else if (UNLIKELY(lowered(NMI()))) {
|
||||
handleNMI();
|
||||
|
Loading…
Reference in New Issue
Block a user