Mosa.Platform.x86.MachineCodeEmitter.EmitRelativeBranch C# (CSharp) Method

EmitRelativeBranch() public method

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