Fix Chou Aniki. Remove hack. (#825)

- Fix Chou Aniki. Remove hack.
- Fix lines in License Stub
This commit is contained in:
bladeoner 2019-03-11 02:29:24 +01:00 committed by dborth
parent 25fd692dc5
commit f513ac5e2f
65 changed files with 34 additions and 82 deletions

View File

@ -4,7 +4,6 @@
For further information, consult the LICENSE file in the root directory. For further information, consult the LICENSE file in the root directory.
\*****************************************************************************/ \*****************************************************************************/
#ifndef _65C816_H_ #ifndef _65C816_H_
#define _65C816_H_ #define _65C816_H_

View File

@ -4,7 +4,6 @@
For further information, consult the LICENSE file in the root directory. For further information, consult the LICENSE file in the root directory.
\*****************************************************************************/ \*****************************************************************************/
#ifndef _BSX_H_ #ifndef _BSX_H_
#define _BSX_H_ #define _BSX_H_

View File

@ -4,7 +4,6 @@
For further information, consult the LICENSE file in the root directory. For further information, consult the LICENSE file in the root directory.
\*****************************************************************************/ \*****************************************************************************/
#include <math.h> #include <math.h>
#include "snes9x.h" #include "snes9x.h"
#include "memmap.h" #include "memmap.h"

View File

@ -4,7 +4,6 @@
For further information, consult the LICENSE file in the root directory. For further information, consult the LICENSE file in the root directory.
\*****************************************************************************/ \*****************************************************************************/
#ifndef _C4_H_ #ifndef _C4_H_
#define _C4_H_ #define _C4_H_

View File

@ -4,7 +4,6 @@
For further information, consult the LICENSE file in the root directory. For further information, consult the LICENSE file in the root directory.
\*****************************************************************************/ \*****************************************************************************/
#include <math.h> #include <math.h>
#include "snes9x.h" #include "snes9x.h"
#include "memmap.h" #include "memmap.h"

View File

@ -4,7 +4,6 @@
For further information, consult the LICENSE file in the root directory. For further information, consult the LICENSE file in the root directory.
\*****************************************************************************/ \*****************************************************************************/
#include <ctype.h> #include <ctype.h>
#include "snes9x.h" #include "snes9x.h"
#include "memmap.h" #include "memmap.h"

View File

@ -4,7 +4,6 @@
For further information, consult the LICENSE file in the root directory. For further information, consult the LICENSE file in the root directory.
\*****************************************************************************/ \*****************************************************************************/
#ifndef _CHEATS_H_ #ifndef _CHEATS_H_
#define _CHEATS_H_ #define _CHEATS_H_

View File

@ -4,7 +4,6 @@
For further information, consult the LICENSE file in the root directory. For further information, consult the LICENSE file in the root directory.
\*****************************************************************************/ \*****************************************************************************/
#include "snes9x.h" #include "snes9x.h"
#include "memmap.h" #include "memmap.h"

View File

@ -4,7 +4,6 @@
For further information, consult the LICENSE file in the root directory. For further information, consult the LICENSE file in the root directory.
\*****************************************************************************/ \*****************************************************************************/
#include <map> #include <map>
#include <set> #include <set>
#include <vector> #include <vector>
@ -2444,6 +2443,17 @@ void S9xApplyCommand (s9xcommand_t cmd, int16 data1, int16 data2)
break; break;
} }
#ifdef NETPLAY_SUPPORT
if (Settings.NetPlay && data2 != 1) { //data2 == 1 means it's sent by the netplay code
if (Settings.NetPlayServer) {
S9xNPSendJoypadSwap();
} else {
S9xSetInfoString("Netplay Client cannot swap pads.");
break;
}
}
#endif
newcontrollers[1] = curcontrollers[0]; newcontrollers[1] = curcontrollers[0];
newcontrollers[0] = curcontrollers[1]; newcontrollers[0] = curcontrollers[1];

View File

@ -4,7 +4,6 @@
For further information, consult the LICENSE file in the root directory. For further information, consult the LICENSE file in the root directory.
\*****************************************************************************/ \*****************************************************************************/
#ifndef _CONTROLS_H_ #ifndef _CONTROLS_H_
#define _CONTROLS_H_ #define _CONTROLS_H_

View File

@ -4,7 +4,6 @@
For further information, consult the LICENSE file in the root directory. For further information, consult the LICENSE file in the root directory.
\*****************************************************************************/ \*****************************************************************************/
#include "snes9x.h" #include "snes9x.h"
#include "memmap.h" #include "memmap.h"
#include "dma.h" #include "dma.h"

View File

@ -4,7 +4,6 @@
For further information, consult the LICENSE file in the root directory. For further information, consult the LICENSE file in the root directory.
\*****************************************************************************/ \*****************************************************************************/
#ifndef _CPUADDR_H_ #ifndef _CPUADDR_H_
#define _CPUADDR_H_ #define _CPUADDR_H_

View File

@ -4,7 +4,6 @@
For further information, consult the LICENSE file in the root directory. For further information, consult the LICENSE file in the root directory.
\*****************************************************************************/ \*****************************************************************************/
#include "snes9x.h" #include "snes9x.h"
#include "memmap.h" #include "memmap.h"
#include "cpuops.h" #include "cpuops.h"
@ -25,9 +24,14 @@ void S9xMainLoop (void)
#define CHECK_FOR_IRQ_CHANGE() \ #define CHECK_FOR_IRQ_CHANGE() \
if (Timings.IRQFlagChanging) \ if (Timings.IRQFlagChanging) \
{ \ { \
if (Timings.IRQFlagChanging == IRQ_CLEAR_FLAG) \ if (Timings.IRQFlagChanging & IRQ_TRIGGER_NMI) \
{ \
CPU.NMIPending = TRUE; \
Timings.NMITriggerPos = CPU.Cycles + 6; \
} \
if (Timings.IRQFlagChanging & IRQ_CLEAR_FLAG) \
ClearIRQ(); \ ClearIRQ(); \
else if (Timings.IRQFlagChanging == IRQ_SET_FLAG) \ else if (Timings.IRQFlagChanging & IRQ_SET_FLAG) \
SetIRQ(); \ SetIRQ(); \
Timings.IRQFlagChanging = IRQ_NONE; \ Timings.IRQFlagChanging = IRQ_NONE; \
} }
@ -132,11 +136,12 @@ void S9xMainLoop (void)
if (!(CPU.Flags & FRAME_ADVANCE_FLAG)) if (!(CPU.Flags & FRAME_ADVANCE_FLAG))
#endif #endif
{ {
S9xSyncSpeed(); S9xSyncSpeed();
} }
break; break;
} }
uint8 Op; uint8 Op;
struct SOpcodes *Opcodes; struct SOpcodes *Opcodes;
@ -263,9 +268,9 @@ void S9xDoHEventProcessing (void)
if (Timings.NextIRQTimer != 0x0fffffff) if (Timings.NextIRQTimer != 0x0fffffff)
Timings.NextIRQTimer -= Timings.H_Max; Timings.NextIRQTimer -= Timings.H_Max;
S9xAPUSetReferenceTime(CPU.Cycles); S9xAPUSetReferenceTime(CPU.Cycles);
if (Settings.SA1) if (Settings.SA1)
SA1.Cycles -= Timings.H_Max * 3; SA1.Cycles -= Timings.H_Max * 3;
CPU.V_Counter++; CPU.V_Counter++;
if (CPU.V_Counter >= Timings.V_Max) // V ranges from 0 to Timings.V_Max - 1 if (CPU.V_Counter >= Timings.V_Max) // V ranges from 0 to Timings.V_Max - 1

View File

@ -4,7 +4,6 @@
For further information, consult the LICENSE file in the root directory. For further information, consult the LICENSE file in the root directory.
\*****************************************************************************/ \*****************************************************************************/
#ifndef _CPUEXEC_H_ #ifndef _CPUEXEC_H_
#define _CPUEXEC_H_ #define _CPUEXEC_H_

View File

@ -4,7 +4,6 @@
For further information, consult the LICENSE file in the root directory. For further information, consult the LICENSE file in the root directory.
\*****************************************************************************/ \*****************************************************************************/
#ifndef _CPUMACRO_H_ #ifndef _CPUMACRO_H_
#define _CPUMACRO_H_ #define _CPUMACRO_H_

View File

@ -4,7 +4,6 @@
For further information, consult the LICENSE file in the root directory. For further information, consult the LICENSE file in the root directory.
\*****************************************************************************/ \*****************************************************************************/
#include "snes9x.h" #include "snes9x.h"
#include "memmap.h" #include "memmap.h"
#include "apu/apu.h" #include "apu/apu.h"
@ -1453,7 +1452,7 @@ static void Op58 (void)
AddCycles(ONE_CYCLE); AddCycles(ONE_CYCLE);
#ifndef SA1_OPCODES #ifndef SA1_OPCODES
Timings.IRQFlagChanging = IRQ_CLEAR_FLAG; Timings.IRQFlagChanging |= IRQ_CLEAR_FLAG;
#else #else
ClearIRQ(); ClearIRQ();
#endif #endif
@ -1465,7 +1464,7 @@ static void Op78 (void)
AddCycles(ONE_CYCLE); AddCycles(ONE_CYCLE);
#ifndef SA1_OPCODES #ifndef SA1_OPCODES
Timings.IRQFlagChanging = IRQ_SET_FLAG; Timings.IRQFlagChanging |= IRQ_SET_FLAG;
#else #else
SetIRQ(); SetIRQ();
#endif #endif
@ -2781,7 +2780,7 @@ static void OpDC (void)
{ {
S9xSetPCBase(AbsoluteIndirectLong(JUMP)); S9xSetPCBase(AbsoluteIndirectLong(JUMP));
#ifdef SA1_OPCODES #ifdef SA1_OPCODES
AddCycles(ONE_CYCLE); AddCycles(ONE_CYCLE);
#endif #endif
} }
@ -2789,7 +2788,7 @@ static void OpDCSlow (void)
{ {
S9xSetPCBase(AbsoluteIndirectLongSlow(JUMP)); S9xSetPCBase(AbsoluteIndirectLongSlow(JUMP));
#ifdef SA1_OPCODES #ifdef SA1_OPCODES
AddCycles(ONE_CYCLE); AddCycles(ONE_CYCLE);
#endif #endif
} }
@ -2797,7 +2796,7 @@ static void Op5C (void)
{ {
S9xSetPCBase(AbsoluteLong(JUMP)); S9xSetPCBase(AbsoluteLong(JUMP));
#ifdef SA1_OPCODES #ifdef SA1_OPCODES
AddCycles(ONE_CYCLE); AddCycles(ONE_CYCLE);
#endif #endif
} }
@ -2805,7 +2804,7 @@ static void Op5CSlow (void)
{ {
S9xSetPCBase(AbsoluteLongSlow(JUMP)); S9xSetPCBase(AbsoluteLongSlow(JUMP));
#ifdef SA1_OPCODES #ifdef SA1_OPCODES
AddCycles(ONE_CYCLE); AddCycles(ONE_CYCLE);
#endif #endif
} }

View File

@ -4,7 +4,6 @@
For further information, consult the LICENSE file in the root directory. For further information, consult the LICENSE file in the root directory.
\*****************************************************************************/ \*****************************************************************************/
#ifdef HAVE_LIBPNG #ifdef HAVE_LIBPNG
#include <png.h> #include <png.h>
#endif #endif

View File

@ -4,7 +4,6 @@
For further information, consult the LICENSE file in the root directory. For further information, consult the LICENSE file in the root directory.
\*****************************************************************************/ \*****************************************************************************/
#ifndef _CROSSHAIRS_H_ #ifndef _CROSSHAIRS_H_
#define _CROSSHAIRS_H_ #define _CROSSHAIRS_H_

View File

@ -4,7 +4,6 @@
For further information, consult the LICENSE file in the root directory. For further information, consult the LICENSE file in the root directory.
\*****************************************************************************/ \*****************************************************************************/
#ifndef _DISPLAY_H_ #ifndef _DISPLAY_H_
#define _DISPLAY_H_ #define _DISPLAY_H_

View File

@ -4,7 +4,6 @@
For further information, consult the LICENSE file in the root directory. For further information, consult the LICENSE file in the root directory.
\*****************************************************************************/ \*****************************************************************************/
#include "snes9x.h" #include "snes9x.h"
#include "memmap.h" #include "memmap.h"
#include "dma.h" #include "dma.h"

View File

@ -4,7 +4,6 @@
For further information, consult the LICENSE file in the root directory. For further information, consult the LICENSE file in the root directory.
\*****************************************************************************/ \*****************************************************************************/
#ifndef _DMA_H_ #ifndef _DMA_H_
#define _DMA_H_ #define _DMA_H_

View File

@ -4,7 +4,6 @@
For further information, consult the LICENSE file in the root directory. For further information, consult the LICENSE file in the root directory.
\*****************************************************************************/ \*****************************************************************************/
#include "snes9x.h" #include "snes9x.h"
#include "memmap.h" #include "memmap.h"
#ifdef DEBUGGER #ifdef DEBUGGER

View File

@ -4,7 +4,6 @@
For further information, consult the LICENSE file in the root directory. For further information, consult the LICENSE file in the root directory.
\*****************************************************************************/ \*****************************************************************************/
#ifndef _DSP1_H_ #ifndef _DSP1_H_
#define _DSP1_H_ #define _DSP1_H_

View File

@ -4,7 +4,6 @@
For further information, consult the LICENSE file in the root directory. For further information, consult the LICENSE file in the root directory.
\*****************************************************************************/ \*****************************************************************************/
#include "snes9x.h" #include "snes9x.h"
#include "memmap.h" #include "memmap.h"

View File

@ -4,7 +4,6 @@
For further information, consult the LICENSE file in the root directory. For further information, consult the LICENSE file in the root directory.
\*****************************************************************************/ \*****************************************************************************/
#include "snes9x.h" #include "snes9x.h"
#include "memmap.h" #include "memmap.h"

View File

@ -4,7 +4,6 @@
For further information, consult the LICENSE file in the root directory. For further information, consult the LICENSE file in the root directory.
\*****************************************************************************/ \*****************************************************************************/
#ifndef _FONT_H_ #ifndef _FONT_H_
#define _FONT_H_ #define _FONT_H_

View File

@ -4,7 +4,6 @@
For further information, consult the LICENSE file in the root directory. For further information, consult the LICENSE file in the root directory.
\*****************************************************************************/ \*****************************************************************************/
#include "snes9x.h" #include "snes9x.h"
#include "memmap.h" #include "memmap.h"
#include "fxinst.h" #include "fxinst.h"

View File

@ -4,7 +4,6 @@
For further information, consult the LICENSE file in the root directory. For further information, consult the LICENSE file in the root directory.
\*****************************************************************************/ \*****************************************************************************/
#ifndef _FXEMU_H_ #ifndef _FXEMU_H_
#define _FXEMU_H_ #define _FXEMU_H_

View File

@ -4,7 +4,6 @@
For further information, consult the LICENSE file in the root directory. For further information, consult the LICENSE file in the root directory.
\*****************************************************************************/ \*****************************************************************************/
#include "snes9x.h" #include "snes9x.h"
#include "fxinst.h" #include "fxinst.h"
#include "fxemu.h" #include "fxemu.h"

View File

@ -4,7 +4,6 @@
For further information, consult the LICENSE file in the root directory. For further information, consult the LICENSE file in the root directory.
\*****************************************************************************/ \*****************************************************************************/
#ifndef _FXINST_H_ #ifndef _FXINST_H_
#define _FXINST_H_ #define _FXINST_H_

View File

@ -4,7 +4,6 @@
For further information, consult the LICENSE file in the root directory. For further information, consult the LICENSE file in the root directory.
\*****************************************************************************/ \*****************************************************************************/
#ifndef _GETSET_H_ #ifndef _GETSET_H_
#define _GETSET_H_ #define _GETSET_H_

View File

@ -4,7 +4,6 @@
For further information, consult the LICENSE file in the root directory. For further information, consult the LICENSE file in the root directory.
\*****************************************************************************/ \*****************************************************************************/
#ifndef _LANGUAGE_H_ #ifndef _LANGUAGE_H_
#define _LANGUAGE_H_ #define _LANGUAGE_H_

View File

@ -4,7 +4,6 @@
For further information, consult the LICENSE file in the root directory. For further information, consult the LICENSE file in the root directory.
\*****************************************************************************/ \*****************************************************************************/
#ifndef _LOGGER_H_ #ifndef _LOGGER_H_
#define _LOGGER_H_ #define _LOGGER_H_

View File

@ -3648,8 +3648,6 @@ void CMemory::ApplyROMFixes (void)
{ {
if (match_id("AVCJ")) // Rendering Ranger R2 if (match_id("AVCJ")) // Rendering Ranger R2
Timings.APUSpeedup = 4; Timings.APUSpeedup = 4;
if (match_id("AANJ")) // Chou Aniki
Timings.APUSpeedup = -3;
if (match_na("CIRCUIT USA")) if (match_na("CIRCUIT USA"))
Timings.APUSpeedup = 3; Timings.APUSpeedup = 3;

View File

@ -4,7 +4,6 @@
For further information, consult the LICENSE file in the root directory. For further information, consult the LICENSE file in the root directory.
\*****************************************************************************/ \*****************************************************************************/
#ifndef _MEMMAP_H_ #ifndef _MEMMAP_H_
#define _MEMMAP_H_ #define _MEMMAP_H_

View File

@ -4,7 +4,6 @@
For further information, consult the LICENSE file in the root directory. For further information, consult the LICENSE file in the root directory.
\*****************************************************************************/ \*****************************************************************************/
#ifndef _MESSAGES_H_ #ifndef _MESSAGES_H_
#define _MESSAGES_H_ #define _MESSAGES_H_

View File

@ -4,7 +4,6 @@
For further information, consult the LICENSE file in the root directory. For further information, consult the LICENSE file in the root directory.
\*****************************************************************************/ \*****************************************************************************/
#ifdef DEBUGGER #ifdef DEBUGGER
#ifndef _MISSING_H_ #ifndef _MISSING_H_

View File

@ -4,7 +4,6 @@
For further information, consult the LICENSE file in the root directory. For further information, consult the LICENSE file in the root directory.
\*****************************************************************************/ \*****************************************************************************/
#ifndef _MOVIE_H_ #ifndef _MOVIE_H_
#define _MOVIE_H_ #define _MOVIE_H_

View File

@ -4,7 +4,6 @@
For further information, consult the LICENSE file in the root directory. For further information, consult the LICENSE file in the root directory.
\*****************************************************************************/ \*****************************************************************************/
#include "snes9x.h" #include "snes9x.h"
#include "memmap.h" #include "memmap.h"

View File

@ -4,7 +4,6 @@
For further information, consult the LICENSE file in the root directory. For further information, consult the LICENSE file in the root directory.
\*****************************************************************************/ \*****************************************************************************/
#ifndef _OBC1_H_ #ifndef _OBC1_H_
#define _OBC1_H_ #define _OBC1_H_

View File

@ -4,7 +4,6 @@
For further information, consult the LICENSE file in the root directory. For further information, consult the LICENSE file in the root directory.
\*****************************************************************************/ \*****************************************************************************/
#ifndef _PORT_H_ #ifndef _PORT_H_
#define _PORT_H_ #define _PORT_H_

View File

@ -1403,8 +1403,7 @@ void S9xSetCPU (uint8 Byte, uint16 Address)
{ {
// FIXME: triggered at HC+=6, checked just before the final CPU cycle, // FIXME: triggered at HC+=6, checked just before the final CPU cycle,
// then, when to call S9xOpcode_NMI()? // then, when to call S9xOpcode_NMI()?
CPU.NMIPending = TRUE; Timings.IRQFlagChanging |= IRQ_TRIGGER_NMI;
Timings.NMITriggerPos = CPU.Cycles + 6 + 6;
#ifdef DEBUGGER #ifdef DEBUGGER
if (Settings.TraceHCEvent) if (Settings.TraceHCEvent)

View File

@ -4,7 +4,6 @@
For further information, consult the LICENSE file in the root directory. For further information, consult the LICENSE file in the root directory.
\*****************************************************************************/ \*****************************************************************************/
#include "snes9x.h" #include "snes9x.h"
#include "memmap.h" #include "memmap.h"

View File

@ -4,7 +4,6 @@
For further information, consult the LICENSE file in the root directory. For further information, consult the LICENSE file in the root directory.
\*****************************************************************************/ \*****************************************************************************/
#ifndef _SA1_H_ #ifndef _SA1_H_
#define _SA1_H_ #define _SA1_H_

View File

@ -4,7 +4,6 @@
For further information, consult the LICENSE file in the root directory. For further information, consult the LICENSE file in the root directory.
\*****************************************************************************/ \*****************************************************************************/
#include "snes9x.h" #include "snes9x.h"
#include "memmap.h" #include "memmap.h"

View File

@ -4,7 +4,6 @@
For further information, consult the LICENSE file in the root directory. For further information, consult the LICENSE file in the root directory.
\*****************************************************************************/ \*****************************************************************************/
#ifndef _SAR_H_ #ifndef _SAR_H_
#define _SAR_H_ #define _SAR_H_

View File

@ -4,7 +4,6 @@
For further information, consult the LICENSE file in the root directory. For further information, consult the LICENSE file in the root directory.
\*****************************************************************************/ \*****************************************************************************/
#ifdef HAVE_LIBPNG #ifdef HAVE_LIBPNG
#include <png.h> #include <png.h>
#endif #endif

View File

@ -4,7 +4,6 @@
For further information, consult the LICENSE file in the root directory. For further information, consult the LICENSE file in the root directory.
\*****************************************************************************/ \*****************************************************************************/
#ifndef _SCREENSHOT_H_ #ifndef _SCREENSHOT_H_
#define _SCREENSHOT_H_ #define _SCREENSHOT_H_

View File

@ -4,7 +4,6 @@
For further information, consult the LICENSE file in the root directory. For further information, consult the LICENSE file in the root directory.
\*****************************************************************************/ \*****************************************************************************/
#include "snes9x.h" #include "snes9x.h"
#include "memmap.h" #include "memmap.h"
#include "sdd1.h" #include "sdd1.h"

View File

@ -4,7 +4,6 @@
For further information, consult the LICENSE file in the root directory. For further information, consult the LICENSE file in the root directory.
\*****************************************************************************/ \*****************************************************************************/
#ifndef _SDD1_H_ #ifndef _SDD1_H_
#define _SDD1_H_ #define _SDD1_H_

View File

@ -4,7 +4,6 @@
For further information, consult the LICENSE file in the root directory. For further information, consult the LICENSE file in the root directory.
\*****************************************************************************/ \*****************************************************************************/
#ifndef _SDD1EMU_H_ #ifndef _SDD1EMU_H_
#define _SDD1EMU_H_ #define _SDD1EMU_H_

View File

@ -4,7 +4,6 @@
For further information, consult the LICENSE file in the root directory. For further information, consult the LICENSE file in the root directory.
\*****************************************************************************/ \*****************************************************************************/
#include "snes9x.h" #include "snes9x.h"
#include "seta.h" #include "seta.h"

View File

@ -4,7 +4,6 @@
For further information, consult the LICENSE file in the root directory. For further information, consult the LICENSE file in the root directory.
\*****************************************************************************/ \*****************************************************************************/
#ifndef _SETA_H_ #ifndef _SETA_H_
#define _SETA_H_ #define _SETA_H_

View File

@ -4,7 +4,6 @@
For further information, consult the LICENSE file in the root directory. For further information, consult the LICENSE file in the root directory.
\*****************************************************************************/ \*****************************************************************************/
#include <math.h> #include <math.h>
#include "snes9x.h" #include "snes9x.h"
#include "memmap.h" #include "memmap.h"

View File

@ -4,7 +4,6 @@
For further information, consult the LICENSE file in the root directory. For further information, consult the LICENSE file in the root directory.
\*****************************************************************************/ \*****************************************************************************/
#include "snes9x.h" #include "snes9x.h"
#include "memmap.h" #include "memmap.h"
#include "seta.h" #include "seta.h"

View File

@ -4,7 +4,6 @@
For further information, consult the LICENSE file in the root directory. For further information, consult the LICENSE file in the root directory.
\*****************************************************************************/ \*****************************************************************************/
#include "snes9x.h" #include "snes9x.h"
#include "memmap.h" #include "memmap.h"
#include "seta.h" #include "seta.h"

View File

@ -4,7 +4,6 @@
For further information, consult the LICENSE file in the root directory. For further information, consult the LICENSE file in the root directory.
\*****************************************************************************/ \*****************************************************************************/
#include <assert.h> #include <assert.h>
#include "snes9x.h" #include "snes9x.h"
#include "memmap.h" #include "memmap.h"

View File

@ -4,7 +4,6 @@
For further information, consult the LICENSE file in the root directory. For further information, consult the LICENSE file in the root directory.
\*****************************************************************************/ \*****************************************************************************/
#ifndef _SNAPSHOT_H_ #ifndef _SNAPSHOT_H_
#define _SNAPSHOT_H_ #define _SNAPSHOT_H_

View File

@ -4,7 +4,6 @@
For further information, consult the LICENSE file in the root directory. For further information, consult the LICENSE file in the root directory.
\*****************************************************************************/ \*****************************************************************************/
#ifndef _SNES9X_H_ #ifndef _SNES9X_H_
#define _SNES9X_H_ #define _SNES9X_H_
@ -155,9 +154,10 @@ enum
enum enum
{ {
IRQ_NONE = 0, IRQ_NONE = 0x0,
IRQ_SET_FLAG = 1, IRQ_SET_FLAG = 0x1,
IRQ_CLEAR_FLAG = 2 IRQ_CLEAR_FLAG = 0x2,
IRQ_TRIGGER_NMI = 0x4
}; };
struct STimings struct STimings

View File

@ -4,7 +4,6 @@
For further information, consult the LICENSE file in the root directory. For further information, consult the LICENSE file in the root directory.
\*****************************************************************************/ \*****************************************************************************/
#ifndef _SPC7110_H_ #ifndef _SPC7110_H_
#define _SPC7110_H_ #define _SPC7110_H_

View File

@ -4,7 +4,6 @@
For further information, consult the LICENSE file in the root directory. For further information, consult the LICENSE file in the root directory.
\*****************************************************************************/ \*****************************************************************************/
#ifndef _SRTC_H_ #ifndef _SRTC_H_
#define _SRTC_H_ #define _SRTC_H_

View File

@ -4,7 +4,6 @@
For further information, consult the LICENSE file in the root directory. For further information, consult the LICENSE file in the root directory.
\*****************************************************************************/ \*****************************************************************************/
// Abstract the details of reading from zip files versus FILE *'s. // Abstract the details of reading from zip files versus FILE *'s.
#include <string> #include <string>

View File

@ -4,7 +4,6 @@
For further information, consult the LICENSE file in the root directory. For further information, consult the LICENSE file in the root directory.
\*****************************************************************************/ \*****************************************************************************/
#ifndef _STREAM_H_ #ifndef _STREAM_H_
#define _STREAM_H_ #define _STREAM_H_

View File

@ -4,7 +4,6 @@
For further information, consult the LICENSE file in the root directory. For further information, consult the LICENSE file in the root directory.
\*****************************************************************************/ \*****************************************************************************/
// This file includes itself multiple times. // This file includes itself multiple times.
// The other option would be to have 4 files, where A includes B, and B includes C 3 times, and C includes D 5 times. // The other option would be to have 4 files, where A includes B, and B includes C 3 times, and C includes D 5 times.
// Look for the following marker to find where the divisions are. // Look for the following marker to find where the divisions are.

View File

@ -4,7 +4,6 @@
For further information, consult the LICENSE file in the root directory. For further information, consult the LICENSE file in the root directory.
\*****************************************************************************/ \*****************************************************************************/
#ifndef _TILE_H_ #ifndef _TILE_H_
#define _TILE_H_ #define _TILE_H_