private void Given_16bit_CallingConvention(string cConvention)
        {
            this.ccr          = new CallingConventionEmitter();
            this.deserializer = new FakeTypeDeserializer(32);
            FastcallConvention fcc = new FastcallConvention(
                Registers.cx, Registers.dx, 4, 4);

            this.fcc = fcc;
        }
Beispiel #2
0
        private void Given_32bit_CallingConvention()
        {
            this.ccr          = new CallingConventionEmitter();
            this.deserializer = new FakeTypeDeserializer(4);
            FastcallConvention fcc = new FastcallConvention(
                Registers.ecx, Registers.edx, 4, 4);

            this.fcc = fcc;
        }