Example #1
0
        public void Tdd_Ptr64()
        {
            var bytes = new byte[]
            {
                0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08,
            };

            Given_TypedDataDumper(bytes);

            var ptr64 = new Pointer(VoidType.Instance, 64);

            ptr64.Accept(tdd);

            Assert.AreEqual("dq\t0x0807060504030201" + cr, sw.ToString());
        }