示例#1
0
 /// <inheritdoc/>
 public void PutData(
     IParsedInstruction instruction,
     IEmulatedMemory memory,
     IProcessorState state,
     IALU alu,
     long value)
 {
     memory.SetValue(instruction.Width, (ulong)value, instruction.Address);
 }
示例#2
0
 /// <inheritdoc/>
 public void PutData(
     IParsedInstruction instruction,
     IEmulatedMemory memory,
     IProcessorState state,
     IALU alu,
     long value)
 {
     memory.SetValue(instruction.Width, (ulong)value, (ushort)state.Registers[instruction.Register1]);
 }