2018-12-03 12:26:02 +01:00
|
|
|
/*****************************************************************************\
|
|
|
|
Snes9x - Portable Super Nintendo Entertainment System (TM) emulator.
|
|
|
|
This file is licensed under the Snes9x License.
|
|
|
|
For further information, consult the LICENSE file in the root directory.
|
|
|
|
\*****************************************************************************/
|
2009-11-30 09:14:38 +01:00
|
|
|
|
2008-08-06 03:09:59 +02:00
|
|
|
#ifndef _CPUOPS_H_
|
|
|
|
#define _CPUOPS_H_
|
2010-01-27 23:08:56 +01:00
|
|
|
|
|
|
|
void S9xOpcode_NMI (void);
|
|
|
|
void S9xOpcode_IRQ (void);
|
2008-08-06 03:09:59 +02:00
|
|
|
|
2018-11-12 00:57:16 +01:00
|
|
|
#ifndef SA1_OPCODES
|
|
|
|
#define CHECK_FOR_IRQ() {} // if (CPU.IRQLine) S9xOpcode_IRQ(); }
|
|
|
|
#else
|
|
|
|
#define CHECK_FOR_IRQ() {}
|
|
|
|
#endif
|
2008-08-06 03:09:59 +02:00
|
|
|
#endif
|