Emul8.Peripherals.CPU.TranslationCPU.InitFromElf C# (CSharp) 메소드

InitFromElf() 공개 메소드

public InitFromElf ( ELF elf ) : void
elf ELF
리턴 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