Mosa.Platform.x86.MachineCodeEmitter.EmitRelativeBranch C# (CSharp) 메소드

EmitRelativeBranch() 공개 메소드

Emits relative branch code.
public EmitRelativeBranch ( byte code, int dest ) : void
code byte The branch instruction code.
dest int The destination label.
리턴 void
        public void EmitRelativeBranch(byte[] code, int dest)
        {
            codeStream.Write(code, 0, code.Length);
            EmitRelativeBranchTarget(dest);
        }