示例#1
0
        public static void FreeMemory(Cpu cpu, byte flag, uint destination)
        {
            var offset = ReadValue(cpu, Dest(flag), destination);

            cpu.Free(offset);
        }
示例#2
0
 public static void FreeMemory(Cpu cpu, uint rX)
 {
     var offset = cpu.Registers[rX];
     cpu.Free(offset);
 }
示例#3
0
        public static void FreeMemory(Cpu cpu, uint rX)
        {
            var offset = cpu.Registers[rX];

            cpu.Free(offset);
        }
 public static void FreeMemory(Cpu cpu, byte flag, uint destination)
 {
     var offset = ReadValue(cpu, Dest(flag), destination);
     cpu.Free(offset);
 }