Mosa.Compiler.Framework.Platform.OpcodeEncoder.AppendShortValue C# (CSharp) Method

AppendShortValue() public method

public AppendShortValue ( ushort value ) : OpcodeEncoder
value ushort
return OpcodeEncoder
        public OpcodeEncoder AppendShortValue(ushort value)
        {
            AppendByteValue((byte)(value & 0xFF));
            AppendByteValue((byte)((value >> 8) & 0xFF));
            return this;
        }