├── .gitattributes ├── .gitignore ├── LICENSE ├── NuGet.config ├── README.md ├── screenshots └── 1.png └── src ├── LoveNes.Cli ├── App.xaml ├── App.xaml.cs ├── LoveNes.Cli.csproj ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── Program.cs └── lj65.nes ├── LoveNes.sln └── LoveNes ├── APU.cs ├── Bus.cs ├── CPU.MicroCode.cs ├── CPU.OpCode.cs ├── CPU.OpCodeStatus.cs ├── CPU.cs ├── Cartridge.cs ├── Clock.cs ├── Host └── IHostGraphics.cs ├── IO ├── NesFile.cs ├── ReadWriteExtensions.cs ├── SpanReader.cs └── Writer.cs ├── Joystick.cs ├── LoveNes.csproj ├── Mappers └── Mapper0.cs ├── NametableMirrorController.cs ├── NesSystem.cs ├── OamDmaController.cs ├── OnChipRAM.cs └── PPU.cs /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetGame/love-nes/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetGame/love-nes/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetGame/love-nes/HEAD/LICENSE -------------------------------------------------------------------------------- /NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetGame/love-nes/HEAD/NuGet.config -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetGame/love-nes/HEAD/README.md -------------------------------------------------------------------------------- /screenshots/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetGame/love-nes/HEAD/screenshots/1.png -------------------------------------------------------------------------------- /src/LoveNes.Cli/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetGame/love-nes/HEAD/src/LoveNes.Cli/App.xaml -------------------------------------------------------------------------------- /src/LoveNes.Cli/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetGame/love-nes/HEAD/src/LoveNes.Cli/App.xaml.cs -------------------------------------------------------------------------------- /src/LoveNes.Cli/LoveNes.Cli.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetGame/love-nes/HEAD/src/LoveNes.Cli/LoveNes.Cli.csproj -------------------------------------------------------------------------------- /src/LoveNes.Cli/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetGame/love-nes/HEAD/src/LoveNes.Cli/MainWindow.xaml -------------------------------------------------------------------------------- /src/LoveNes.Cli/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetGame/love-nes/HEAD/src/LoveNes.Cli/MainWindow.xaml.cs -------------------------------------------------------------------------------- /src/LoveNes.Cli/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetGame/love-nes/HEAD/src/LoveNes.Cli/Program.cs -------------------------------------------------------------------------------- /src/LoveNes.Cli/lj65.nes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetGame/love-nes/HEAD/src/LoveNes.Cli/lj65.nes -------------------------------------------------------------------------------- /src/LoveNes.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetGame/love-nes/HEAD/src/LoveNes.sln -------------------------------------------------------------------------------- /src/LoveNes/APU.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetGame/love-nes/HEAD/src/LoveNes/APU.cs -------------------------------------------------------------------------------- /src/LoveNes/Bus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetGame/love-nes/HEAD/src/LoveNes/Bus.cs -------------------------------------------------------------------------------- /src/LoveNes/CPU.MicroCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetGame/love-nes/HEAD/src/LoveNes/CPU.MicroCode.cs -------------------------------------------------------------------------------- /src/LoveNes/CPU.OpCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetGame/love-nes/HEAD/src/LoveNes/CPU.OpCode.cs -------------------------------------------------------------------------------- /src/LoveNes/CPU.OpCodeStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetGame/love-nes/HEAD/src/LoveNes/CPU.OpCodeStatus.cs -------------------------------------------------------------------------------- /src/LoveNes/CPU.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetGame/love-nes/HEAD/src/LoveNes/CPU.cs -------------------------------------------------------------------------------- /src/LoveNes/Cartridge.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetGame/love-nes/HEAD/src/LoveNes/Cartridge.cs -------------------------------------------------------------------------------- /src/LoveNes/Clock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetGame/love-nes/HEAD/src/LoveNes/Clock.cs -------------------------------------------------------------------------------- /src/LoveNes/Host/IHostGraphics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetGame/love-nes/HEAD/src/LoveNes/Host/IHostGraphics.cs -------------------------------------------------------------------------------- /src/LoveNes/IO/NesFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetGame/love-nes/HEAD/src/LoveNes/IO/NesFile.cs -------------------------------------------------------------------------------- /src/LoveNes/IO/ReadWriteExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetGame/love-nes/HEAD/src/LoveNes/IO/ReadWriteExtensions.cs -------------------------------------------------------------------------------- /src/LoveNes/IO/SpanReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetGame/love-nes/HEAD/src/LoveNes/IO/SpanReader.cs -------------------------------------------------------------------------------- /src/LoveNes/IO/Writer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetGame/love-nes/HEAD/src/LoveNes/IO/Writer.cs -------------------------------------------------------------------------------- /src/LoveNes/Joystick.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetGame/love-nes/HEAD/src/LoveNes/Joystick.cs -------------------------------------------------------------------------------- /src/LoveNes/LoveNes.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetGame/love-nes/HEAD/src/LoveNes/LoveNes.csproj -------------------------------------------------------------------------------- /src/LoveNes/Mappers/Mapper0.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetGame/love-nes/HEAD/src/LoveNes/Mappers/Mapper0.cs -------------------------------------------------------------------------------- /src/LoveNes/NametableMirrorController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetGame/love-nes/HEAD/src/LoveNes/NametableMirrorController.cs -------------------------------------------------------------------------------- /src/LoveNes/NesSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetGame/love-nes/HEAD/src/LoveNes/NesSystem.cs -------------------------------------------------------------------------------- /src/LoveNes/OamDmaController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetGame/love-nes/HEAD/src/LoveNes/OamDmaController.cs -------------------------------------------------------------------------------- /src/LoveNes/OnChipRAM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetGame/love-nes/HEAD/src/LoveNes/OnChipRAM.cs -------------------------------------------------------------------------------- /src/LoveNes/PPU.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetGame/love-nes/HEAD/src/LoveNes/PPU.cs --------------------------------------------------------------------------------