mirror of
https://github.com/libretro/snes9x2005.git
synced 2024-11-27 10:30:32 +00:00
13 lines
227 B
C
13 lines
227 B
C
#include "../copyright"
|
|
|
|
#ifndef _CPUOPS_H_
|
|
#define _CPUOPS_H_
|
|
void S9xOpcode_NMI();
|
|
void S9xOpcode_IRQ();
|
|
|
|
#define CHECK_FOR_IRQ() \
|
|
if (CPU.IRQActive && !CheckFlag (IRQ) && !Settings.DisableIRQ) \
|
|
S9xOpcode_IRQ()
|
|
|
|
#endif
|