public void ReadDeviceState(C64Interfaces.IFile stateFile) { _portA.ReadDeviceState(stateFile); _portB.ReadDeviceState(stateFile); _pcState = stateFile.ReadBool(); _todPause = stateFile.ReadBool(); _todLatch = stateFile.ReadBool(); _todClkCnt = stateFile.ReadByte(); stateFile.ReadBytes(_todLimits); for (int i = 0; i < _tod.GetLength(0); i++) { for (int j = 0; j < _tod.GetLength(1); j++) _tod[i, j] = stateFile.ReadByte(); } stateFile.ReadBytes(_interruptRegisters); _serialRegister = stateFile.ReadByte(); _flag = stateFile.ReadBool(); _cntState = stateFile.ReadBool(); _cntEdge = stateFile.ReadBool(); _timerA.ReadDeviceState(stateFile); _timerB.ReadDeviceState(stateFile); }
public void ReadDeviceState(C64Interfaces.IFile stateFile) { stateFile.ReadBytes(_memory); }
public void ReadDeviceState(C64Interfaces.IFile stateFile) { byte trackCount = stateFile.ReadByte(); for (int i = 0; i < _tracks.Length; i++) { ushort sectoirCount = stateFile.ReadWord(); stateFile.ReadBytes(_tracks[i]); } }