VM.VirtualMachine.Push C# (CSharp) Method

Push() private method

private Push ( short value ) : void
value short
return void
        private void Push(short value)
        {
            Memory[SP--] = (byte)(value >> 8);
            Memory[SP--] = (byte)(value & 0xFF);
        }