gitextract_r4m8qsp8/ ├── .gitattributes ├── .gitignore ├── 6502Documentation.cs ├── App.config ├── Emulator.cs ├── LICENSE ├── Program.cs ├── Properties/ │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── README.md ├── TriCNES.csproj ├── TriCNES.sln ├── forms/ │ ├── TASProperties.Designer.cs │ ├── TASProperties.cs │ ├── TASProperties.resx │ ├── TASProperties3ct.Designer.cs │ ├── TASProperties3ct.cs │ ├── TASProperties3ct.resx │ ├── TriCHexEditor.Designer.cs │ ├── TriCHexEditor.cs │ ├── TriCHexEditor.resx │ ├── TriCNESGUI.Designer.cs │ ├── TriCNESGUI.cs │ ├── TriCNESGUI.resx │ ├── TriCNTViewer.Designer.cs │ ├── TriCNTViewer.cs │ ├── TriCNTViewer.resx │ ├── TriCTASTimeline.Designer.cs │ ├── TriCTASTimeline.cs │ ├── TriCTASTimeline.resx │ ├── TriCTraceLogger.Designer.cs │ ├── TriCTraceLogger.cs │ └── TriCTraceLogger.resx ├── mappers/ │ ├── Mapper_AOROM.cs │ ├── Mapper_CNROM.cs │ ├── Mapper_FDS.cs │ ├── Mapper_FME7.cs │ ├── Mapper_MMC1.cs │ ├── Mapper_MMC2.cs │ ├── Mapper_MMC3.cs │ ├── Mapper_NROM.cs │ ├── Mapper_NULL.cs │ └── Mapper_UxROM.cs └── packages.config