public FakeArchitecture() { this.rewriters = new RtlTraceBuilder(); this.StackRegister = GetRegister(FakeArchitecture.iStackRegister); this.Name = "FakeArch"; this.Description = "Fake Architecture for testing"; }
public FakeArchitecture() : base("fake") { this.CarryFlagMask = (uint)StatusFlags.C; this.Description = "Fake Architecture for testing"; this.Endianness = EndianServices.Little; this.FramePointerType = PrimitiveType.Ptr32; this.InstructionBitSize = 32; this.PointerType = PrimitiveType.Ptr32; this.rewriters = new RtlTraceBuilder(); this.StackRegister = GetRegister(FakeArchitecture.iStackRegister); this.WordWidth = PrimitiveType.Word32; this.FpuStackBase = ST; this.FpuStackRegister = Top; }
public FakeArchitecture() { this.rewriters = new RtlTraceBuilder(); }
public FakeArchitecture() { this.rewriters = new RtlTraceBuilder(); this.StackRegister = GetRegister(FakeArchitecture.iStackRegister); }