Skip to content
Permalink
mecm
Switch branches/tags
Go to file
 
 
Cannot retrieve contributors at this time
/*
* Snes9x - Portable Super Nintendo Entertainment System (TM) emulator.
*
* (c) Copyright 1996 - 2001 Gary Henderson (gary.henderson@ntlworld.com) and
* Jerremy Koot (jkoot@snes9x.com)
*
* Super FX C emulator code
* (c) Copyright 1997 - 1999 Ivar (ivar@snes9x.com) and
* Gary Henderson.
* Super FX assembler emulator code (c) Copyright 1998 zsKnight and _Demo_.
*
* DSP1 emulator code (c) Copyright 1998 Ivar, _Demo_ and Gary Henderson.
* C4 asm and some C emulation code (c) Copyright 2000 zsKnight and _Demo_.
* C4 C code (c) Copyright 2001 Gary Henderson (gary.henderson@ntlworld.com).
*
* DOS port code contains the works of other authors. See headers in
* individual files.
*
* Snes9x homepage: http://www.snes9x.com
*
* Permission to use, copy, modify and distribute Snes9x in both binary and
* source form, for non-commercial purposes, is hereby granted without fee,
* providing that this license information and copyright notice appear with
* all copies and any derived work.
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event shall the authors be held liable for any damages
* arising from the use of this software.
*
* Snes9x is freeware for PERSONAL USE only. Commercial users should
* seek permission of the copyright holders first. Commercial use includes
* charging money for Snes9x or software derived from Snes9x.
*
* The copyright holders request that bug fixes and improvements to the code
* should be forwarded to them so everyone can benefit from the modifications
* in future versions.
*
* Super NES and Super Nintendo Entertainment System are trademarks of
* Nintendo Co., Limited and its subsidiary companies.
*/
#ifndef _CPUADDR_H_
#define _CPUADDR_H_
EXTERN_C long OpAddress;
STATIC inline long Immediate8 ()
{
long OpAddress = ICPU.ShiftedPB + CPU.PC - CPU.PCBase;
CPU.PC++;
return OpAddress;
}
STATIC inline long Immediate16 ()
{
long OpAddress = ICPU.ShiftedPB + CPU.PC - CPU.PCBase;
CPU.PC += 2;
return OpAddress;
}
STATIC inline long Relative ()
{
signed char s9xInt8 = *CPU.PC++;
#ifdef VAR_CYCLES
CPU.Cycles += CPU.MemSpeed;
#endif
return ((int) (CPU.PC - CPU.PCBase) + s9xInt8) & 0xffff;;
}
STATIC inline long RelativeLong ()
{
#ifdef FAST_LSB_WORD_ACCESS
long OpAddress = *(uint16 *) CPU.PC;
#else
long OpAddress = *CPU.PC + (*(CPU.PC + 1) << 8);
#endif
#ifdef VAR_CYCLES
CPU.Cycles += CPU.MemSpeedx2 + ONE_CYCLE;
#endif
CPU.PC += 2;
OpAddress += (CPU.PC - CPU.PCBase);
OpAddress &= 0xffff;
return OpAddress;
}
STATIC inline long AbsoluteIndexedIndirect ()
{
#ifdef FAST_LSB_WORD_ACCESS
long OpAddress = (Registers.X.W + *(uint16 *) CPU.PC) & 0xffff;
#else
long OpAddress = (Registers.X.W + *CPU.PC + (*(CPU.PC + 1) << 8)) & 0xffff;
#endif
#ifdef VAR_CYCLES
CPU.Cycles += CPU.MemSpeedx2;
#endif
CPU.PC += 2;
OpAddress = S9xGetWord (ICPU.ShiftedPB + OpAddress);
return OpAddress;
}
STATIC inline long AbsoluteIndirectLong ()
{
#ifdef FAST_LSB_WORD_ACCESS
long OpAddress = *(uint16 *) CPU.PC;
#else
long OpAddress = *CPU.PC + (*(CPU.PC + 1) << 8);
#endif
#ifdef VAR_CYCLES
CPU.Cycles += CPU.MemSpeedx2;
#endif
CPU.PC += 2;
OpAddress = S9xGetWord (OpAddress) | (S9xGetByte (OpAddress + 2) << 16);
return OpAddress;
}
STATIC inline long AbsoluteIndirect ()
{
#ifdef FAST_LSB_WORD_ACCESS
long OpAddress = *(uint16 *) CPU.PC;
#else
long OpAddress = *CPU.PC + (*(CPU.PC + 1) << 8);
#endif
#ifdef VAR_CYCLES
CPU.Cycles += CPU.MemSpeedx2;
#endif
CPU.PC += 2;
OpAddress = S9xGetWord (OpAddress) + ICPU.ShiftedPB;
return OpAddress;
}
STATIC inline long Absolute ()
{
#ifdef FAST_LSB_WORD_ACCESS
long OpAddress = *(uint16 *) CPU.PC + ICPU.ShiftedDB;
#else
long OpAddress = *CPU.PC + (*(CPU.PC + 1) << 8) + ICPU.ShiftedDB;
#endif
CPU.PC += 2;
#ifdef VAR_CYCLES
CPU.Cycles += CPU.MemSpeedx2;
#endif
return OpAddress;
}
STATIC inline long AbsoluteLong ()
{
#ifdef FAST_LSB_WORD_ACCESS
long OpAddress = (*(uint32 *) CPU.PC) & 0xffffff;
#else
long OpAddress = *CPU.PC + (*(CPU.PC + 1) << 8) + (*(CPU.PC + 2) << 16);
#endif
CPU.PC += 3;
#ifdef VAR_CYCLES
CPU.Cycles += CPU.MemSpeedx2 + CPU.MemSpeed;
#endif
return OpAddress;
}
STATIC inline long Direct( void)
{
long OpAddress = (*CPU.PC++ + Registers.D.W) & 0xffff;
#ifdef VAR_CYCLES
CPU.Cycles += CPU.MemSpeed;
#endif
// if (Registers.DL != 0) CPU.Cycles += ONE_CYCLE;
return OpAddress;
}
STATIC inline long DirectIndirectIndexed ()
{
long OpAddress = (*CPU.PC++ + Registers.D.W) & 0xffff;
#ifdef VAR_CYCLES
CPU.Cycles += CPU.MemSpeed;
#endif
OpAddress = ICPU.ShiftedDB + S9xGetWord (OpAddress) + Registers.Y.W;
// if (Registers.DL != 0) CPU.Cycles += ONE_CYCLE;
// XXX: always add one if STA
// XXX: else Add one cycle if crosses page boundary
return OpAddress;
}
STATIC inline long DirectIndirectIndexedLong ()
{
long OpAddress = (*CPU.PC++ + Registers.D.W) & 0xffff;
#ifdef VAR_CYCLES
CPU.Cycles += CPU.MemSpeed;
#endif
OpAddress = S9xGetWord (OpAddress) + (S9xGetByte (OpAddress + 2) << 16) +
Registers.Y.W;
// if (Registers.DL != 0) CPU.Cycles += ONE_CYCLE;
return OpAddress;
}
STATIC inline long DirectIndexedIndirect( void)
{
long OpAddress = (*CPU.PC++ + Registers.D.W + Registers.X.W) & 0xffff;
#ifdef VAR_CYCLES
CPU.Cycles += CPU.MemSpeed;
#endif
OpAddress = S9xGetWord (OpAddress) + ICPU.ShiftedDB;
#ifdef VAR_CYCLES
// if (Registers.DL != 0)
// CPU.Cycles += TWO_CYCLES;
// else
CPU.Cycles += ONE_CYCLE;
#endif
return OpAddress;
}
STATIC inline long DirectIndexedX ()
{
long OpAddress = (*CPU.PC++ + Registers.D.W + Registers.X.W) & 0xffff;
#ifdef VAR_CYCLES
CPU.Cycles += CPU.MemSpeed;
#endif
#ifdef VAR_CYCLES
// if (Registers.DL != 0)
// CPU.Cycles += TWO_CYCLES;
// else
CPU.Cycles += ONE_CYCLE;
#endif
return OpAddress;
}
STATIC inline long DirectIndexedY ()
{
long OpAddress = (*CPU.PC++ + Registers.D.W + Registers.Y.W) & 0xffff;
#ifdef VAR_CYCLES
CPU.Cycles += CPU.MemSpeed;
#endif
#ifdef VAR_CYCLES
// if (Registers.DL != 0)
// CPU.Cycles += TWO_CYCLES;
// else
CPU.Cycles += ONE_CYCLE;
#endif
return OpAddress;
}
STATIC inline long AbsoluteIndexedX ()
{
#ifdef FAST_LSB_WORD_ACCESS
long OpAddress = ICPU.ShiftedDB + *(uint16 *) CPU.PC + Registers.X.W;
#else
long OpAddress = ICPU.ShiftedDB + *CPU.PC + (*(CPU.PC + 1) << 8) +
Registers.X.W;
#endif
CPU.PC += 2;
#ifdef VAR_CYCLES
CPU.Cycles += CPU.MemSpeedx2;
#endif
// XXX: always add one cycle for ROL, LSR, etc
// XXX: else is cross page boundary add one cycle
return OpAddress;
}
STATIC inline long AbsoluteIndexedY ()
{
#ifdef FAST_LSB_WORD_ACCESS
long OpAddress = ICPU.ShiftedDB + *(uint16 *) CPU.PC + Registers.Y.W;
#else
long OpAddress = ICPU.ShiftedDB + *CPU.PC + (*(CPU.PC + 1) << 8) +
Registers.Y.W;
#endif
CPU.PC += 2;
#ifdef VAR_CYCLES
CPU.Cycles += CPU.MemSpeedx2;
#endif
// XXX: always add cycle for STA
// XXX: else is cross page boundary add one cycle
return OpAddress;
}
STATIC inline long AbsoluteLongIndexedX ()
{
#ifdef FAST_LSB_WORD_ACCESS
long OpAddress = (*(uint32 *) CPU.PC + Registers.X.W) & 0xffffff;
#else
long OpAddress = (*CPU.PC + (*(CPU.PC + 1) << 8) + (*(CPU.PC + 2) << 16) + Registers.X.W) & 0xffffff;
#endif
CPU.PC += 3;
#ifdef VAR_CYCLES
CPU.Cycles += CPU.MemSpeedx2 + CPU.MemSpeed;
#endif
return OpAddress;
}
STATIC inline long DirectIndirect ()
{
long OpAddress = (*CPU.PC++ + Registers.D.W) & 0xffff;
#ifdef VAR_CYCLES
CPU.Cycles += CPU.MemSpeed;
#endif
OpAddress = S9xGetWord (OpAddress) + ICPU.ShiftedDB;
// if (Registers.DL != 0) CPU.Cycles += ONE_CYCLE;
return OpAddress;
}
STATIC inline long DirectIndirectLong ()
{
long OpAddress = (*CPU.PC++ + Registers.D.W) & 0xffff;
#ifdef VAR_CYCLES
CPU.Cycles += CPU.MemSpeed;
#endif
OpAddress = S9xGetWord (OpAddress) +
(S9xGetByte (OpAddress + 2) << 16);
// if (Registers.DL != 0) CPU.Cycles += ONE_CYCLE;
return OpAddress;
}
STATIC inline long StackRelative ()
{
long OpAddress = (*CPU.PC++ + Registers.S.W) & 0xffff;
#ifdef VAR_CYCLES
CPU.Cycles += CPU.MemSpeed;
CPU.Cycles += ONE_CYCLE;
#endif
return OpAddress;
}
STATIC inline long StackRelativeIndirectIndexed ()
{
long OpAddress = (*CPU.PC++ + Registers.S.W) & 0xffff;
#ifdef VAR_CYCLES
CPU.Cycles += CPU.MemSpeed;
CPU.Cycles += TWO_CYCLES;
#endif
OpAddress = (S9xGetWord (OpAddress) + ICPU.ShiftedDB +
Registers.Y.W) & 0xffffff;
return OpAddress;
}
#endif