mirror of
https://git.743378673.xyz/MeloNX/MeloNX.git
synced 2025-06-28 03:16:23 +02:00
18 lines
317 B
C#
18 lines
317 B
C#
|
|
namespace Ryujinx.Cpu.LightningJit
|
|
{
|
|
enum AddressForm : byte
|
|
{
|
|
None,
|
|
OffsetReg,
|
|
PostIndexed,
|
|
PreIndexed,
|
|
SignedScaled,
|
|
UnsignedScaled,
|
|
BaseRegister,
|
|
BasePlusOffset,
|
|
Literal,
|
|
StructNoOffset,
|
|
StructPostIndexedReg,
|
|
}
|
|
}
|