移除NESDeltaCore

This commit is contained in:
bluesea 2024-05-30 11:42:10 +08:00
parent d34b53aee3
commit bc6fe13e00
384 changed files with 6389 additions and 8728 deletions

View File

@ -1,7 +1,7 @@
// REVISION TRACKING // REVISION TRACKING
// This file is auto-generated. // This file is auto-generated.
// Do not commit this file to the code repository! // Do not commit this file to the code repository!
#define SCR_REV_STR "ba258bdfca0ef38ee9043bd36fea051df3f5d899" #define SCR_REV_STR "d34b53aee3320f5af74576cb98b707c88f875cc5"
#define SCM_DESC_STR "ba258bd" #define SCM_DESC_STR "d34b53a"
#define SCM_BRANCH_STR "main" #define SCM_BRANCH_STR "main"
#define SCM_IS_MASTER 0 #define SCM_IS_MASTER 0

View File

@ -1,2 +1,2 @@
#define PLUGIN_REVISION "ba258bd" #define PLUGIN_REVISION "d34b53a"
#define PLUGIN_REVISION_W L"ba258bd" #define PLUGIN_REVISION_W L"d34b53a"

View File

@ -1424,7 +1424,6 @@
"${PODS_ROOT}/../External/Harmony/Harmony/Model/Core Data/Migrations/Harmony2ToHarmony3.xcmappingmodel", "${PODS_ROOT}/../External/Harmony/Harmony/Model/Core Data/Migrations/Harmony2ToHarmony3.xcmappingmodel",
"${PODS_ROOT}/../External/Harmony/Harmony/Model/Core Data/Migrations/HarmonyToHarmony2.xcmappingmodel", "${PODS_ROOT}/../External/Harmony/Harmony/Model/Core Data/Migrations/HarmonyToHarmony2.xcmappingmodel",
"${PODS_CONFIGURATION_BUILD_DIR}/N64DeltaCore/Mupen64Plus.bundle", "${PODS_CONFIGURATION_BUILD_DIR}/N64DeltaCore/Mupen64Plus.bundle",
"${PODS_CONFIGURATION_BUILD_DIR}/NESDeltaCore/NESDeltaCore.bundle",
"${PODS_ROOT}/../External/Roxas/Roxas/RSTCollectionViewCell.xib", "${PODS_ROOT}/../External/Roxas/Roxas/RSTCollectionViewCell.xib",
"${PODS_ROOT}/../External/Roxas/Roxas/RSTPlaceholderView.xib", "${PODS_ROOT}/../External/Roxas/Roxas/RSTPlaceholderView.xib",
"${PODS_CONFIGURATION_BUILD_DIR}/SNESDeltaCore/SNESDeltaCore.bundle", "${PODS_CONFIGURATION_BUILD_DIR}/SNESDeltaCore/SNESDeltaCore.bundle",
@ -1440,7 +1439,6 @@
"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/Harmony2ToHarmony3.cdm", "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/Harmony2ToHarmony3.cdm",
"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/HarmonyToHarmony2.cdm", "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/HarmonyToHarmony2.cdm",
"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/Mupen64Plus.bundle", "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/Mupen64Plus.bundle",
"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/NESDeltaCore.bundle",
"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/RSTCollectionViewCell.nib", "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/RSTCollectionViewCell.nib",
"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/RSTPlaceholderView.nib", "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/RSTPlaceholderView.nib",
"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/SNESDeltaCore.bundle", "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/SNESDeltaCore.bundle",

View File

@ -7,9 +7,6 @@
<FileRef <FileRef
location = "group:Cores/DeltaCore/DeltaCore.xcodeproj"> location = "group:Cores/DeltaCore/DeltaCore.xcodeproj">
</FileRef> </FileRef>
<FileRef
location = "group:Cores/NESDeltaCore/NESDeltaCore.xcodeproj">
</FileRef>
<FileRef <FileRef
location = "group:Cores/SNESDeltaCore/SNESDeltaCore.xcodeproj"> location = "group:Cores/SNESDeltaCore/SNESDeltaCore.xcodeproj">
</FileRef> </FileRef>

View File

@ -9,7 +9,7 @@
import Foundation import Foundation
import DeltaCore import DeltaCore
import NESDeltaCore //import NESDeltaCore
@objc @objc
enum CheatDevice: Int16 enum CheatDevice: Int16
@ -65,8 +65,8 @@ extension CheatDevice
case .famicomGameGenie, .snesGameGenie, .gbGameGenie, .gameGearGameGenie, .masterSystemGameGenie: case .famicomGameGenie, .snesGameGenie, .gbGameGenie, .gameGearGameGenie, .masterSystemGameGenie:
return .gameGenie return .gameGenie
case .nesGameGenie: // case .nesGameGenie:
return CheatType(rawValue: DeltaCore.CheatType.gameGenie8.rawValue) // return CheatType(rawValue: DeltaCore.CheatType.gameGenie8.rawValue)
case .gbaCodeBreaker, .dsCodeBreaker: case .gbaCodeBreaker, .dsCodeBreaker:
return .codeBreaker return .codeBreaker
@ -76,14 +76,16 @@ extension CheatDevice
case .nesRaw, .nesRawCompare: case .nesRaw, .nesRawCompare:
return nil return nil
default:
return nil
} }
} }
var gameType: GameType? { var gameType: GameType? {
switch self switch self
{ {
case .famicomGameGenie, .famicomRaw, .famicomRawCompare: return .nes // case .famicomGameGenie, .famicomRaw, .famicomRawCompare: return .gba
case .nesGameGenie, .nesRaw, .nesRawCompare: return .nes // case .nesGameGenie, .nesRaw, .nesRawCompare: return .gba
case .snesActionReplay, .snesGameGenie: return .snes case .snesActionReplay, .snesGameGenie: return .snes
case .n64GameShark: return .n64 case .n64GameShark: return .n64
case .gbGameGenie, .gbcGameShark: return .gbc case .gbGameGenie, .gbcGameShark: return .gbc
@ -95,6 +97,7 @@ extension CheatDevice
// Not yet supported // Not yet supported
case .gameGearActionReplay, .gameGearGameGenie: return nil case .gameGearActionReplay, .gameGearGameGenie: return nil
case .masterSystemActionReplay, .masterSystemGameGenie: return nil case .masterSystemActionReplay, .masterSystemGameGenie: return nil
default: return nil
} }
} }

View File

@ -28,8 +28,8 @@ struct AirPlaySkinsOptions
@Option(name: "Manage Skins", detailView: { _ in SkinManager() }) @Option(name: "Manage Skins", detailView: { _ in SkinManager() })
private var skinManager: String = "" // Hack until I figure out how to support Void properties... private var skinManager: String = "" // Hack until I figure out how to support Void properties...
@Option(name: LocalizedStringKey(System.nes.localizedName), description: "The controller skin used when AirPlaying NES games.", detailView: { SkinPicker(gameType: .nes, controllerSkinID: $0) }) // @Option(name: LocalizedStringKey(System.nes.localizedName), description: "The controller skin used when AirPlaying NES games.", detailView: { SkinPicker(gameType: .nes, controllerSkinID: $0) })
var nes: String? // var nes: String?
@Option(name: LocalizedStringKey(System.snes.localizedName), description: "The controller skin used when AirPlaying SNES games.", detailView: { SkinPicker(gameType: .snes, controllerSkinID: $0) }) @Option(name: LocalizedStringKey(System.snes.localizedName), description: "The controller skin used when AirPlaying SNES games.", detailView: { SkinPicker(gameType: .snes, controllerSkinID: $0) })
var snes: String? var snes: String?
@ -53,13 +53,15 @@ struct AirPlaySkinsOptions
guard let system = System(gameType: gameType) else { return nil } guard let system = System(gameType: gameType) else { return nil }
switch system switch system
{ {
case .nes: return self.nes // case .nes: return self.nes
case .snes: return self.snes case .snes: return self.snes
case .genesis: return self.genesis case .genesis: return self.genesis
case .n64: return self.n64 case .n64: return self.n64
case .gbc: return self.gbc case .gbc: return self.gbc
case .gba: return self.gba case .gba: return self.gba
case .ds: return self.ds case .ds: return self.ds
default:
return self.gba
} }
} }
} }

View File

@ -8,7 +8,7 @@
import DeltaCore import DeltaCore
import NESDeltaCore //import NESDeltaCore
import SNESDeltaCore import SNESDeltaCore
import GBCDeltaCore import GBCDeltaCore
import GBADeltaCore import GBADeltaCore
@ -68,7 +68,7 @@ extension DeltaCoreProtocol
private var maximumFastForwardSpeed: Double { private var maximumFastForwardSpeed: Double {
switch self switch self
{ {
case NES.core, SNES.core, GBC.core: return 4 // case NES.core, SNES.core, GBC.core: return 4
case GBA.core: return 3 case GBA.core: return 3
case N64.core where UIDevice.current.hasA11ProcessorOrBetter: return 3 case N64.core where UIDevice.current.hasA11ProcessorOrBetter: return 3
case N64.core where UIDevice.current.hasA9ProcessorOrBetter: return 1.5 case N64.core where UIDevice.current.hasA9ProcessorOrBetter: return 1.5

View File

@ -11,7 +11,7 @@ import DeltaCore
import SNESDeltaCore import SNESDeltaCore
import GBADeltaCore import GBADeltaCore
import GBCDeltaCore import GBCDeltaCore
import NESDeltaCore //import NESDeltaCore
import N64DeltaCore import N64DeltaCore
//import MelonDSDeltaCore //import MelonDSDeltaCore
import Systems import Systems
@ -35,7 +35,7 @@ enum System: CaseIterable
} }
static var allCores: [DeltaCoreProtocol] { static var allCores: [DeltaCoreProtocol] {
return [NES.core, SNES.core, N64.core, GBC.core, GBA.core, DS.core, GPGX.core] return [ SNES.core, N64.core, GBC.core, GBA.core, DS.core, GPGX.core]
} }
} }
@ -86,7 +86,7 @@ extension System
var deltaCore: DeltaCoreProtocol { var deltaCore: DeltaCoreProtocol {
switch self switch self
{ {
case .nes: return NES.core case .nes: return GBA.core
case .snes: return SNES.core case .snes: return SNES.core
case .n64: return N64.core case .n64: return N64.core
case .gbc: return GBC.core case .gbc: return GBC.core
@ -99,7 +99,7 @@ extension System
var gameType: DeltaCore.GameType { var gameType: DeltaCore.GameType {
switch self switch self
{ {
case .nes: return .nes case .nes: return .gba
case .snes: return .snes case .snes: return .snes
case .n64: return .n64 case .n64: return .n64
case .gbc: return .gbc case .gbc: return .gbc
@ -113,7 +113,7 @@ extension System
{ {
switch gameType switch gameType
{ {
case GameType.nes: self = .nes // case GameType.nes: self = .nes
case GameType.snes: self = .snes case GameType.snes: self = .snes
case GameType.n64: self = .n64 case GameType.n64: self = .n64
case GameType.gbc: self = .gbc case GameType.gbc: self = .gbc
@ -131,7 +131,7 @@ extension DeltaCore.GameType
{ {
switch fileExtension.lowercased() switch fileExtension.lowercased()
{ {
case "nes": self = .nes // case "nes": self = .nes
case "smc", "sfc", "fig": self = .snes case "smc", "sfc", "fig": self = .snes
case "n64", "z64": self = .n64 case "n64", "z64": self = .n64
case "gbc", "gb": self = .gbc case "gbc", "gb": self = .gbc

View File

@ -10,7 +10,7 @@ target 'Delta' do
pod 'SMCalloutView', '~> 2.1.0' pod 'SMCalloutView', '~> 2.1.0'
pod 'DeltaCore', :path => 'Cores/DeltaCore' pod 'DeltaCore', :path => 'Cores/DeltaCore'
pod 'NESDeltaCore', :path => 'Cores/NESDeltaCore' # pod 'NESDeltaCore', :path => 'Cores/NESDeltaCore'
pod 'SNESDeltaCore', :path => 'Cores/SNESDeltaCore' pod 'SNESDeltaCore', :path => 'Cores/SNESDeltaCore'
pod 'N64DeltaCore', :path => 'Cores/N64DeltaCore' pod 'N64DeltaCore', :path => 'Cores/N64DeltaCore'
pod 'GBCDeltaCore', :path => 'Cores/GBCDeltaCore' pod 'GBCDeltaCore', :path => 'Cores/GBCDeltaCore'

View File

@ -50,8 +50,6 @@ PODS:
- DeltaCore - DeltaCore
- N64DeltaCore/Video (0.1): - N64DeltaCore/Video (0.1):
- DeltaCore - DeltaCore
- NESDeltaCore (0.1):
- DeltaCore
- Roxas (0.1) - Roxas (0.1)
- SDWebImage (3.8.3): - SDWebImage (3.8.3):
- SDWebImage/Core (= 3.8.3) - SDWebImage/Core (= 3.8.3)
@ -73,7 +71,6 @@ DEPENDENCIES:
- GBCDeltaCore (from `Cores/GBCDeltaCore`) - GBCDeltaCore (from `Cores/GBCDeltaCore`)
- Harmony (from `External/Harmony`) - Harmony (from `External/Harmony`)
- N64DeltaCore (from `Cores/N64DeltaCore`) - N64DeltaCore (from `Cores/N64DeltaCore`)
- NESDeltaCore (from `Cores/NESDeltaCore`)
- Roxas (from `External/Roxas`) - Roxas (from `External/Roxas`)
- SDWebImage (~> 3.8) - SDWebImage (~> 3.8)
- SMCalloutView (~> 2.1.0) - SMCalloutView (~> 2.1.0)
@ -107,8 +104,6 @@ EXTERNAL SOURCES:
:path: External/Harmony :path: External/Harmony
N64DeltaCore: N64DeltaCore:
:path: Cores/N64DeltaCore :path: Cores/N64DeltaCore
NESDeltaCore:
:path: Cores/NESDeltaCore
Roxas: Roxas:
:path: External/Roxas :path: External/Roxas
SNESDeltaCore: SNESDeltaCore:
@ -127,7 +122,6 @@ SPEC CHECKSUMS:
GTMSessionFetcher: 5595ec75acf5be50814f81e9189490412bad82ba GTMSessionFetcher: 5595ec75acf5be50814f81e9189490412bad82ba
Harmony: 5fdc51d0a4f2ce7dcd4439becbbdda1fac4c9e3f Harmony: 5fdc51d0a4f2ce7dcd4439becbbdda1fac4c9e3f
N64DeltaCore: 4eeb468746722952bcd5467ecb9ebe7df070f53a N64DeltaCore: 4eeb468746722952bcd5467ecb9ebe7df070f53a
NESDeltaCore: ffae3bba878fc505bac0914150a695ede7bc9550
Roxas: 1990039f843f5dc284918dc82375feb80020ef62 Roxas: 1990039f843f5dc284918dc82375feb80020ef62
SDWebImage: a72e880a8fe0f7fc31efe15aaed443c074d2a80c SDWebImage: a72e880a8fe0f7fc31efe15aaed443c074d2a80c
SMCalloutView: 5c0ee363dc8e7204b2fda17dfad38c93e9e23481 SMCalloutView: 5c0ee363dc8e7204b2fda17dfad38c93e9e23481
@ -136,6 +130,6 @@ SPEC CHECKSUMS:
SwiftyDropbox: 378b4425a2e8d0cb24c7b0f2e3af72bfbaaf1e73 SwiftyDropbox: 378b4425a2e8d0cb24c7b0f2e3af72bfbaaf1e73
ZIPFoundation: b1f0de4eed33e74a676f76e12559ab6b75990197 ZIPFoundation: b1f0de4eed33e74a676f76e12559ab6b75990197
PODFILE CHECKSUM: 759348f5414630836525cd10fd3f8d2910d04e78 PODFILE CHECKSUM: c5bbd2d1c2e99046d5ceb5fbf68e825f272d4ac5
COCOAPODS: 1.15.2 COCOAPODS: 1.15.2

View File

@ -1 +0,0 @@
../../../../../Cores/NESDeltaCore/NESDeltaCore/NESDeltaCore.h

View File

@ -1 +0,0 @@
../../../../../../../Cores/NESDeltaCore/nestopia/source/core/NstApu.hpp

View File

@ -1 +0,0 @@
../../../../../../../Cores/NESDeltaCore/nestopia/source/core/NstAssert.hpp

View File

@ -1 +0,0 @@
../../../../../../../Cores/NESDeltaCore/nestopia/source/core/NstBarcodeReader.hpp

View File

@ -1 +0,0 @@
../../../../../../../Cores/NESDeltaCore/nestopia/source/core/NstBase.hpp

View File

@ -1 +0,0 @@
../../../../../../../Cores/NESDeltaCore/nestopia/source/core/NstCartridge.hpp

View File

@ -1 +0,0 @@
../../../../../../../Cores/NESDeltaCore/nestopia/source/core/NstCartridgeInes.hpp

View File

@ -1 +0,0 @@
../../../../../../../Cores/NESDeltaCore/nestopia/source/core/NstCartridgeRomset.hpp

View File

@ -1 +0,0 @@
../../../../../../../Cores/NESDeltaCore/nestopia/source/core/NstCartridgeUnif.hpp

View File

@ -1 +0,0 @@
../../../../../../../Cores/NESDeltaCore/nestopia/source/core/NstCheats.hpp

View File

@ -1 +0,0 @@
../../../../../../../Cores/NESDeltaCore/nestopia/source/core/NstChecksum.hpp

View File

@ -1 +0,0 @@
../../../../../../../Cores/NESDeltaCore/nestopia/source/core/NstChips.hpp

View File

@ -1 +0,0 @@
../../../../../../../Cores/NESDeltaCore/nestopia/source/core/NstCore.hpp

View File

@ -1 +0,0 @@
../../../../../../../Cores/NESDeltaCore/nestopia/source/core/NstCpu.hpp

View File

@ -1 +0,0 @@
../../../../../../../Cores/NESDeltaCore/nestopia/source/core/NstCrc32.hpp

View File

@ -1 +0,0 @@
../../../../../../../Cores/NESDeltaCore/nestopia/source/core/NstDipSwitches.hpp

View File

@ -1 +0,0 @@
../../../../../../../Cores/NESDeltaCore/nestopia/source/core/NstFds.hpp

View File

@ -1 +0,0 @@
../../../../../../../Cores/NESDeltaCore/nestopia/source/core/NstFile.hpp

View File

@ -1 +0,0 @@
../../../../../../../Cores/NESDeltaCore/nestopia/source/core/NstFpuPrecision.hpp

View File

@ -1 +0,0 @@
../../../../../../../Cores/NESDeltaCore/nestopia/source/core/NstHook.hpp

View File

@ -1 +0,0 @@
../../../../../../../Cores/NESDeltaCore/nestopia/source/core/NstImage.hpp

View File

@ -1 +0,0 @@
../../../../../../../Cores/NESDeltaCore/nestopia/source/core/NstImageDatabase.hpp

View File

@ -1 +0,0 @@
../../../../../../../Cores/NESDeltaCore/nestopia/source/core/NstIoAccessor.hpp

View File

@ -1 +0,0 @@
../../../../../../../Cores/NESDeltaCore/nestopia/source/core/NstIoLine.hpp

View File

@ -1 +0,0 @@
../../../../../../../Cores/NESDeltaCore/nestopia/source/core/NstIoMap.hpp

View File

@ -1 +0,0 @@
../../../../../../../Cores/NESDeltaCore/nestopia/source/core/NstIoPort.hpp

View File

@ -1 +0,0 @@
../../../../../../../Cores/NESDeltaCore/nestopia/source/core/NstLog.hpp

View File

@ -1 +0,0 @@
../../../../../../../Cores/NESDeltaCore/nestopia/source/core/NstMachine.hpp

View File

@ -1 +0,0 @@
../../../../../../../Cores/NESDeltaCore/nestopia/source/core/NstMemory.hpp

View File

@ -1 +0,0 @@
../../../../../../../Cores/NESDeltaCore/nestopia/source/core/NstNsf.hpp

View File

@ -1 +0,0 @@
../../../../../../../Cores/NESDeltaCore/nestopia/source/core/NstPatcher.hpp

View File

@ -1 +0,0 @@
../../../../../../../Cores/NESDeltaCore/nestopia/source/core/NstPatcherIps.hpp

View File

@ -1 +0,0 @@
../../../../../../../Cores/NESDeltaCore/nestopia/source/core/NstPatcherUps.hpp

View File

@ -1 +0,0 @@
../../../../../../../Cores/NESDeltaCore/nestopia/source/core/NstPins.hpp

View File

@ -1 +0,0 @@
../../../../../../../Cores/NESDeltaCore/nestopia/source/core/NstPpu.hpp

View File

@ -1 +0,0 @@
../../../../../../../Cores/NESDeltaCore/nestopia/source/core/NstProperties.hpp

View File

@ -1 +0,0 @@
../../../../../../../Cores/NESDeltaCore/nestopia/source/core/NstRam.hpp

View File

@ -1 +0,0 @@
../../../../../../../Cores/NESDeltaCore/nestopia/source/core/NstSha1.hpp

View File

@ -1 +0,0 @@
../../../../../../../Cores/NESDeltaCore/nestopia/source/core/NstSoundPcm.hpp

View File

@ -1 +0,0 @@
../../../../../../../Cores/NESDeltaCore/nestopia/source/core/NstSoundPlayer.hpp

View File

@ -1 +0,0 @@
../../../../../../../Cores/NESDeltaCore/nestopia/source/core/NstSoundRenderer.hpp

View File

@ -1 +0,0 @@
../../../../../../../Cores/NESDeltaCore/nestopia/source/core/NstState.hpp

View File

@ -1 +0,0 @@
../../../../../../../Cores/NESDeltaCore/nestopia/source/core/NstStream.hpp

View File

@ -1 +0,0 @@
../../../../../../../Cores/NESDeltaCore/nestopia/source/core/NstTimer.hpp

View File

@ -1 +0,0 @@
../../../../../../../Cores/NESDeltaCore/nestopia/source/core/NstTracker.hpp

View File

@ -1 +0,0 @@
../../../../../../../Cores/NESDeltaCore/nestopia/source/core/NstTrackerMovie.hpp

View File

@ -1 +0,0 @@
../../../../../../../Cores/NESDeltaCore/nestopia/source/core/NstTrackerRewinder.hpp

View File

@ -1 +0,0 @@
../../../../../../../Cores/NESDeltaCore/nestopia/source/core/NstVector.hpp

View File

@ -1 +0,0 @@
../../../../../../../Cores/NESDeltaCore/nestopia/source/core/NstVideoFilter2xSaI.hpp

View File

@ -1 +0,0 @@
../../../../../../../Cores/NESDeltaCore/nestopia/source/core/NstVideoFilterHqX.hpp

View File

@ -1 +0,0 @@
../../../../../../../Cores/NESDeltaCore/nestopia/source/core/NstVideoFilterNone.hpp

View File

@ -1 +0,0 @@
../../../../../../../Cores/NESDeltaCore/nestopia/source/core/NstVideoFilterNtsc.hpp

View File

@ -1 +0,0 @@
../../../../../../../Cores/NESDeltaCore/nestopia/source/core/NstVideoFilterScaleX.hpp

View File

@ -1 +0,0 @@
../../../../../../../Cores/NESDeltaCore/nestopia/source/core/NstVideoFilterxBR.hpp

View File

@ -1 +0,0 @@
../../../../../../../Cores/NESDeltaCore/nestopia/source/core/NstVideoRenderer.hpp

View File

@ -1 +0,0 @@
../../../../../../../Cores/NESDeltaCore/nestopia/source/core/NstVideoScreen.hpp

View File

@ -1 +0,0 @@
../../../../../../../Cores/NESDeltaCore/nestopia/source/core/NstXml.hpp

View File

@ -1 +0,0 @@
../../../../../../../Cores/NESDeltaCore/nestopia/source/core/NstZlib.hpp

View File

@ -1 +0,0 @@
../../../../../../../../Cores/NESDeltaCore/nestopia/source/core/api/NstApi.hpp

View File

@ -1 +0,0 @@
../../../../../../../../Cores/NESDeltaCore/nestopia/source/core/api/NstApiBarcodeReader.hpp

View File

@ -1 +0,0 @@
../../../../../../../../Cores/NESDeltaCore/nestopia/source/core/api/NstApiCartridge.hpp

View File

@ -1 +0,0 @@
../../../../../../../../Cores/NESDeltaCore/nestopia/source/core/api/NstApiCheats.hpp

View File

@ -1 +0,0 @@
../../../../../../../../Cores/NESDeltaCore/nestopia/source/core/api/NstApiConfig.hpp

View File

@ -1 +0,0 @@
../../../../../../../../Cores/NESDeltaCore/nestopia/source/core/api/NstApiDipSwitches.hpp

View File

@ -1 +0,0 @@
../../../../../../../../Cores/NESDeltaCore/nestopia/source/core/api/NstApiEmulator.hpp

View File

@ -1 +0,0 @@
../../../../../../../../Cores/NESDeltaCore/nestopia/source/core/api/NstApiFds.hpp

View File

@ -1 +0,0 @@
../../../../../../../../Cores/NESDeltaCore/nestopia/source/core/api/NstApiInput.hpp

View File

@ -1 +0,0 @@
../../../../../../../../Cores/NESDeltaCore/nestopia/source/core/api/NstApiMachine.hpp

View File

@ -1 +0,0 @@
../../../../../../../../Cores/NESDeltaCore/nestopia/source/core/api/NstApiMovie.hpp

View File

@ -1 +0,0 @@
../../../../../../../../Cores/NESDeltaCore/nestopia/source/core/api/NstApiNsf.hpp

View File

@ -1 +0,0 @@
../../../../../../../../Cores/NESDeltaCore/nestopia/source/core/api/NstApiRewinder.hpp

View File

@ -1 +0,0 @@
../../../../../../../../Cores/NESDeltaCore/nestopia/source/core/api/NstApiSound.hpp

View File

@ -1 +0,0 @@
../../../../../../../../Cores/NESDeltaCore/nestopia/source/core/api/NstApiTapeRecorder.hpp

View File

@ -1 +0,0 @@
../../../../../../../../Cores/NESDeltaCore/nestopia/source/core/api/NstApiUser.hpp

View File

@ -1 +0,0 @@
../../../../../../../../Cores/NESDeltaCore/nestopia/source/core/api/NstApiVideo.hpp

View File

@ -1 +0,0 @@
../../../../../../../../Cores/NESDeltaCore/nestopia/source/core/board/NstBoard.hpp

View File

@ -1 +0,0 @@
../../../../../../../../Cores/NESDeltaCore/nestopia/source/core/board/NstBoardAcclaim.hpp

View File

@ -1 +0,0 @@
../../../../../../../../Cores/NESDeltaCore/nestopia/source/core/board/NstBoardAcclaimMcAcc.hpp

View File

@ -1 +0,0 @@
../../../../../../../../Cores/NESDeltaCore/nestopia/source/core/board/NstBoardAe.hpp

View File

@ -1 +0,0 @@
../../../../../../../../Cores/NESDeltaCore/nestopia/source/core/board/NstBoardAgci.hpp

View File

@ -1 +0,0 @@
../../../../../../../../Cores/NESDeltaCore/nestopia/source/core/board/NstBoardAve.hpp

View File

@ -1 +0,0 @@
../../../../../../../../Cores/NESDeltaCore/nestopia/source/core/board/NstBoardAveD1012.hpp

View File

@ -1 +0,0 @@
../../../../../../../../Cores/NESDeltaCore/nestopia/source/core/board/NstBoardAveNina.hpp

View File

@ -1 +0,0 @@
../../../../../../../../Cores/NESDeltaCore/nestopia/source/core/board/NstBoardAxRom.hpp

View File

@ -1 +0,0 @@
../../../../../../../../Cores/NESDeltaCore/nestopia/source/core/board/NstBoardBandai.hpp

View File

@ -1 +0,0 @@
../../../../../../../../Cores/NESDeltaCore/nestopia/source/core/board/NstBoardBandai24c0x.hpp

View File

@ -1 +0,0 @@
../../../../../../../../Cores/NESDeltaCore/nestopia/source/core/board/NstBoardBandaiAerobicsStudio.hpp

View File

@ -1 +0,0 @@
../../../../../../../../Cores/NESDeltaCore/nestopia/source/core/board/NstBoardBandaiDatach.hpp

View File

@ -1 +0,0 @@
../../../../../../../../Cores/NESDeltaCore/nestopia/source/core/board/NstBoardBandaiKaraokeStudio.hpp

Some files were not shown because too many files have changed in this diff Show More