コード例 #1
0
ファイル: CBM1541.cs プロジェクト: kevinmel2000/C64Emulator
        public void ReadDeviceState(C64Interfaces.IFile stateFile)
        {
            _ram.ReadDeviceState(stateFile);
            _driveCpu.ReadDeviceState(stateFile);
            _driveVias[0].ReadDeviceState(stateFile);
            _driveVias[1].ReadDeviceState(stateFile);
            _drive.ReadDeviceState(stateFile);
            _sAtnaConn.ReadDeviceState(stateFile);
            _sClockConn.ReadDeviceState(stateFile);
            _sDataConn.ReadDeviceState(stateFile);

            _driveClock.ReadDeviceState(stateFile);
        }
コード例 #2
0
        public void ReadDeviceState(C64Interfaces.IFile stateFile)
        {
            _systemRam.ReadDeviceState(stateFile);
            _systemCpu.ReadDeviceState(stateFile);
            _systemVic.ReadDeviceState(stateFile);
            _systemCias[0].ReadDeviceState(stateFile);
            _systemCias[1].ReadDeviceState(stateFile);
            _serial.ReadDeviceState(stateFile);
            _sDataConn.ReadDeviceState(stateFile);
            _sClockConn.ReadDeviceState(stateFile);

            CpuPort_OnMemoryMapChanged(stateFile.ReadByte());

            _systemClock.ReadDeviceState(stateFile);
        }