예제 #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);
        }
예제 #4
0
 public static void FreeMemory(Cpu cpu, byte flag, uint destination)
 {
     var offset = ReadValue(cpu, Dest(flag), destination);
     cpu.Free(offset);
 }