1/*****************************************************************************\
2 Snes9x - Portable Super Nintendo Entertainment System (TM) emulator.
3 This file is licensed under the Snes9x License.
4 For further information, consult the LICENSE file in the root directory.
5\*****************************************************************************/
6
7#ifndef _CPUOPS_H_
8#define _CPUOPS_H_
9
10void S9xOpcode_NMI (void);
11void S9xOpcode_IRQ (void);
12
13#ifndef SA1_OPCODES
14#define CHECK_FOR_IRQ() {} // if (CPU.IRQLine) S9xOpcode_IRQ(); }
15#else
16#define CHECK_FOR_IRQ() {}
17#endif
18#endif
19