Home
last modified time | relevance | path

Searched refs:OpAddress (Results 1 – 11 of 11) sorted by relevance

/dports/games/libretro-snes9x2005/snes9x2005-218be8e/source/
H A Dcpuaddr.h58 OpAddress = S9xGetWord(ICPU.ShiftedPB + OpAddress); in AbsoluteIndexedIndirect()
76 OpAddress = S9xGetWord(OpAddress) | ((OpenBus = S9xGetByte(OpAddress + 2)) << 16); in AbsoluteIndirectLong()
78 OpAddress = S9xGetWord(OpAddress) | (S9xGetByte(OpAddress + 2) << 16); in AbsoluteIndirectLong()
93 OpAddress = S9xGetWord(OpAddress); in AbsoluteIndirect()
151 OpAddress = S9xGetWord(OpAddress); in DirectIndirectIndexed()
167 OpAddress = S9xGetWord(OpAddress) + (S9xGetByte(OpAddress + 2) << 16) + ICPU.Registers.Y.W; in DirectIndirectIndexedLong()
177 OpAddress = S9xGetWord(OpAddress); in DirectIndexedIndirect()
265 OpAddress = S9xGetWord(OpAddress); in DirectIndirect()
279 OpAddress = S9xGetWord(OpAddress) + ((OpenBus = S9xGetByte(OpAddress + 2)) << 16); in DirectIndirectLong()
281 OpAddress = S9xGetWord(OpAddress) + (S9xGetByte(OpAddress + 2) << 16); in DirectIndirectLong()
[all …]
H A Dcpumacro.h8 extern int32_t OpAddress;
179 Work16 = S9xGetWord(OpAddress); in ASL16()
193 Work8 = S9xGetByte(OpAddress); in ASL8()
196 S9xSetByte(Work8, OpAddress); in ASL8()
299 S9xSetByte(Work8, OpAddress); in DEC8()
356 S9xSetByte(Work8, OpAddress); in INC8()
439 S9xSetByte(Work8, OpAddress); in LSR8()
706 S9xSetWord(0, OpAddress); in STZ16()
711 S9xSetByte(0, OpAddress); in STZ8()
736 S9xSetByte(Work8, OpAddress); in TSB8()
[all …]
H A Dcpuops.c2542 CPU.PC = CPU.PCBase + OpAddress; in Op80()
2727 PushWE((uint16_t)OpAddress); in OpF4E1()
2733 PushW((uint16_t)OpAddress); in OpF4()
2740 PushWE((uint16_t)OpAddress); in OpD4E1()
2746 PushW((uint16_t)OpAddress); in OpD4()
2753 PushWE((uint16_t)OpAddress); in Op62E1()
2759 PushW((uint16_t)OpAddress); in Op62()
3494 S9xSetPCBase(OpAddress); in OpDC()
3505 S9xSetPCBase(OpAddress); in Op5C()
3541 S9xSetPCBase(OpAddress); in Op22E1()
[all …]
H A Dglobals.c36 int32_t OpAddress = 0; variable
/dports/games/libretro-snes9x/snes9x-73aa348/
H A Dcpumacro.h255 uint8 Work8 = S9xGetByte(OpAddress); in ASL8()
259 S9xSetByte(Work8, OpAddress); in ASL8()
333 S9xSetByte(Work8, OpAddress); in DEC8()
363 S9xSetByte(Work8, OpAddress); in INC8()
417 uint8 Work8 = S9xGetByte(OpAddress); in LSR8()
421 S9xSetByte(Work8, OpAddress); in LSR8()
594 S9xSetByte(Registers.AL, OpAddress); in STA8()
624 S9xSetWord(0, OpAddress, w); in STZ16()
630 S9xSetByte(0, OpAddress); in STZ8()
650 S9xSetByte(Work8, OpAddress); in TSB8()
[all …]
/dports/games/libretro-snes9x2010/snes9x2010-714b1c8/src/
H A Dcpumacro.h454 S9xSetByte(Work8, OpAddress); in ASL8()
554 S9xSetByte(Work8, OpAddress); in DEC8()
584 S9xSetByte(Work8, OpAddress); in INC8()
642 S9xSetByte(Work8, OpAddress); in LSR8()
875 S9xSetByte(0, OpAddress); in STZ8()
883 Work16 = S9xGetWord(OpAddress, w); in TSB16()
895 Work8 = S9xGetByte(OpAddress); in TSB8()
899 S9xSetByte(Work8, OpAddress); in TSB8()
907 Work16 = S9xGetWord(OpAddress, w); in TRB16()
919 Work8 = S9xGetByte(OpAddress); in TRB8()
[all …]
/dports/emulators/snes9x-gtk/snes9x-1.54.1/
H A Dcpumacro.h454 uint8 Work8 = S9xGetByte(OpAddress); in ASL8()
458 S9xSetByte(Work8, OpAddress); in ASL8()
532 S9xSetByte(Work8, OpAddress); in DEC8()
562 S9xSetByte(Work8, OpAddress); in INC8()
616 uint8 Work8 = S9xGetByte(OpAddress); in LSR8()
620 S9xSetByte(Work8, OpAddress); in LSR8()
815 S9xSetByte(Registers.AL, OpAddress); in STA8()
845 S9xSetWord(0, OpAddress, w); in STZ16()
851 S9xSetByte(0, OpAddress); in STZ8()
871 S9xSetByte(Work8, OpAddress); in TSB8()
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/swiftshader/third_party/subzero/src/
H A DIceAssemblerARM32.h222 ldr(OpRt, OpAddress, Cond, TInfo); in ldr()
231 ldrex(OpRt, OpAddress, Cond, TInfo); in ldrex()
294 str(OpRt, OpAddress, Cond, TInfo); in str()
303 strex(OpRd, OpRt, OpAddress, Cond, TInfo); in strex()
431 vldrd(OpDd, OpAddress, Cond, TInfo); in vldrd()
440 vldrs(OpSd, OpAddress, Cond, TInfo); in vldrs()
449 vldrq(OpQd, OpAddress, Cond, TInfo); in vldrq()
603 vstrd(OpDd, OpAddress, Cond, TInfo); in vstrd()
612 vstrs(OpSd, OpAddress, Cond, TInfo); in vstrs()
621 vstrq(OpQd, OpAddress, Cond, TInfo); in vstrq()
[all …]
H A DIceAssemblerARM32.cpp948 IValueT Rt, const Operand *OpAddress, in emitMemOp() argument
951 switch (encodeAddress(OpAddress, Address, TInfo, Imm12Address)) { in emitMemOp()
1583 emitMemOp(Cond, IsLoad, IsByte, Rt, OpAddress, TInfo, LdrName); in ldr()
1615 emitMemOp(Cond, IsLoad, IsByte, Rt, OpAddress, TInfo, LdrName); in ldr()
1623 const Operand *OpAddress, in emitMemExOp() argument
1920 emitMemOp(Cond, IsLoad, IsByte, Rt, OpAddress, TInfo, StrName); in str()
1933 emitMemOpEnc3(Cond, B7 | B5 | B4, Rt, OpAddress, TInfo, Strh); in str()
1948 emitMemOp(Cond, IsLoad, IsByte, Rt, OpAddress, TInfo, StrName); in str()
2987 if (encodeAddress(OpAddress, Address, TInfo, NoImmOffsetAddress) != in vld1qr()
3003 return vldrq(OpQd, OpAddress, Ice::CondARM32::AL, TInfo); in vld1()
[all …]
/dports/lang/yap/yap-6.2.2/BEAM/
H A Deam_am.c1330 #define execute_next() goto *OpAddress[*beam_pc]
1338 static void *OpAddress[]= { local
1455 TABLE_OPS=(Cell *) OpAddress;
1462 code2start[0]=(Cell) OpAddress[_prepare_calls];
1463 code2start[3]=(Cell) OpAddress[_call_op];
/dports/lang/yap/yap-6.2.2/C/
H A Dabsmi.c657 static void *OpAddress[] = local
704 Yap_ABSMI_OPCODES = OpAddress;
2885 if (PREG->opc == (OPCODE)OpAddress[_fcall])