├── .gitattributes ├── .gitignore ├── GhostBoy.sln ├── GhostBoy ├── APU.cpp ├── APU.h ├── Cartridge.cpp ├── Cartridge.h ├── GBCPU.cpp ├── GBCPU.h ├── GBGPU.cpp ├── GBGPU.h ├── GhostBoy.cpp ├── GhostBoy.vcxproj ├── GhostBoy.vcxproj.filters ├── Input.cpp ├── Input.h ├── Interrupts.cpp ├── Interrupts.h ├── MBC1.cpp ├── MBC1.h ├── MBC3.cpp ├── MBC3.h ├── MBC5.cpp ├── MBC5.h ├── Memory.cpp ├── Memory.h ├── NOMBC.cpp ├── NOMBC.h ├── NoiseChannel.cpp ├── NoiseChannel.h ├── ReadMe.txt ├── SquareChannel.cpp ├── SquareChannel.h ├── Timer.cpp ├── Timer.h ├── WRAM.cpp ├── WRAM.h ├── WaveChannel.cpp ├── WaveChannel.h ├── stdafx.cpp ├── stdafx.h └── targetver.h ├── LICENSE.txt └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostSonic21/GhostBoy/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostSonic21/GhostBoy/HEAD/.gitignore -------------------------------------------------------------------------------- /GhostBoy.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostSonic21/GhostBoy/HEAD/GhostBoy.sln -------------------------------------------------------------------------------- /GhostBoy/APU.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostSonic21/GhostBoy/HEAD/GhostBoy/APU.cpp -------------------------------------------------------------------------------- /GhostBoy/APU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostSonic21/GhostBoy/HEAD/GhostBoy/APU.h -------------------------------------------------------------------------------- /GhostBoy/Cartridge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostSonic21/GhostBoy/HEAD/GhostBoy/Cartridge.cpp -------------------------------------------------------------------------------- /GhostBoy/Cartridge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostSonic21/GhostBoy/HEAD/GhostBoy/Cartridge.h -------------------------------------------------------------------------------- /GhostBoy/GBCPU.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostSonic21/GhostBoy/HEAD/GhostBoy/GBCPU.cpp -------------------------------------------------------------------------------- /GhostBoy/GBCPU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostSonic21/GhostBoy/HEAD/GhostBoy/GBCPU.h -------------------------------------------------------------------------------- /GhostBoy/GBGPU.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostSonic21/GhostBoy/HEAD/GhostBoy/GBGPU.cpp -------------------------------------------------------------------------------- /GhostBoy/GBGPU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostSonic21/GhostBoy/HEAD/GhostBoy/GBGPU.h -------------------------------------------------------------------------------- /GhostBoy/GhostBoy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostSonic21/GhostBoy/HEAD/GhostBoy/GhostBoy.cpp -------------------------------------------------------------------------------- /GhostBoy/GhostBoy.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostSonic21/GhostBoy/HEAD/GhostBoy/GhostBoy.vcxproj -------------------------------------------------------------------------------- /GhostBoy/GhostBoy.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostSonic21/GhostBoy/HEAD/GhostBoy/GhostBoy.vcxproj.filters -------------------------------------------------------------------------------- /GhostBoy/Input.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostSonic21/GhostBoy/HEAD/GhostBoy/Input.cpp -------------------------------------------------------------------------------- /GhostBoy/Input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostSonic21/GhostBoy/HEAD/GhostBoy/Input.h -------------------------------------------------------------------------------- /GhostBoy/Interrupts.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostSonic21/GhostBoy/HEAD/GhostBoy/Interrupts.cpp -------------------------------------------------------------------------------- /GhostBoy/Interrupts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostSonic21/GhostBoy/HEAD/GhostBoy/Interrupts.h -------------------------------------------------------------------------------- /GhostBoy/MBC1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostSonic21/GhostBoy/HEAD/GhostBoy/MBC1.cpp -------------------------------------------------------------------------------- /GhostBoy/MBC1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostSonic21/GhostBoy/HEAD/GhostBoy/MBC1.h -------------------------------------------------------------------------------- /GhostBoy/MBC3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostSonic21/GhostBoy/HEAD/GhostBoy/MBC3.cpp -------------------------------------------------------------------------------- /GhostBoy/MBC3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostSonic21/GhostBoy/HEAD/GhostBoy/MBC3.h -------------------------------------------------------------------------------- /GhostBoy/MBC5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostSonic21/GhostBoy/HEAD/GhostBoy/MBC5.cpp -------------------------------------------------------------------------------- /GhostBoy/MBC5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostSonic21/GhostBoy/HEAD/GhostBoy/MBC5.h -------------------------------------------------------------------------------- /GhostBoy/Memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostSonic21/GhostBoy/HEAD/GhostBoy/Memory.cpp -------------------------------------------------------------------------------- /GhostBoy/Memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostSonic21/GhostBoy/HEAD/GhostBoy/Memory.h -------------------------------------------------------------------------------- /GhostBoy/NOMBC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostSonic21/GhostBoy/HEAD/GhostBoy/NOMBC.cpp -------------------------------------------------------------------------------- /GhostBoy/NOMBC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostSonic21/GhostBoy/HEAD/GhostBoy/NOMBC.h -------------------------------------------------------------------------------- /GhostBoy/NoiseChannel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostSonic21/GhostBoy/HEAD/GhostBoy/NoiseChannel.cpp -------------------------------------------------------------------------------- /GhostBoy/NoiseChannel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostSonic21/GhostBoy/HEAD/GhostBoy/NoiseChannel.h -------------------------------------------------------------------------------- /GhostBoy/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostSonic21/GhostBoy/HEAD/GhostBoy/ReadMe.txt -------------------------------------------------------------------------------- /GhostBoy/SquareChannel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostSonic21/GhostBoy/HEAD/GhostBoy/SquareChannel.cpp -------------------------------------------------------------------------------- /GhostBoy/SquareChannel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostSonic21/GhostBoy/HEAD/GhostBoy/SquareChannel.h -------------------------------------------------------------------------------- /GhostBoy/Timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostSonic21/GhostBoy/HEAD/GhostBoy/Timer.cpp -------------------------------------------------------------------------------- /GhostBoy/Timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostSonic21/GhostBoy/HEAD/GhostBoy/Timer.h -------------------------------------------------------------------------------- /GhostBoy/WRAM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostSonic21/GhostBoy/HEAD/GhostBoy/WRAM.cpp -------------------------------------------------------------------------------- /GhostBoy/WRAM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostSonic21/GhostBoy/HEAD/GhostBoy/WRAM.h -------------------------------------------------------------------------------- /GhostBoy/WaveChannel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostSonic21/GhostBoy/HEAD/GhostBoy/WaveChannel.cpp -------------------------------------------------------------------------------- /GhostBoy/WaveChannel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostSonic21/GhostBoy/HEAD/GhostBoy/WaveChannel.h -------------------------------------------------------------------------------- /GhostBoy/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostSonic21/GhostBoy/HEAD/GhostBoy/stdafx.cpp -------------------------------------------------------------------------------- /GhostBoy/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostSonic21/GhostBoy/HEAD/GhostBoy/stdafx.h -------------------------------------------------------------------------------- /GhostBoy/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostSonic21/GhostBoy/HEAD/GhostBoy/targetver.h -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostSonic21/GhostBoy/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GhostSonic21/GhostBoy/HEAD/README.md --------------------------------------------------------------------------------