Emul8.Peripherals.CPU.TranslationCPU.InitFromElf C# (CSharp) Method

InitFromElf() public method

public InitFromElf ( ELF elf ) : void
elf ELF
return void
        public virtual void InitFromElf(ELF<uint> elf)
        {
            this.Log(LogLevel.Info, "Setting PC value to 0x{0:X}.", elf.EntryPoint);
            SetPCFromEntryPoint(elf.EntryPoint);
        }
TranslationCPU