示例#1
0
        public void TestLowByte()
        {
            const ushort input = 0xf00f;
            var          low   = Chip.LowByte(input);

            Assert.AreEqual(0xf, low);
        }
示例#2
0
 public Register16(ushort value)
 {
     this.Low  = Chip.LowByte(value);
     this.High = Chip.HighByte(value);
 }