├── .gitattributes ├── .gitignore ├── NESDoc.ods ├── Rewrite ├── HDNes.cbp ├── HDNes.depend ├── HDNes.layout ├── classList.h ├── common.h ├── core │ ├── apu.cpp │ ├── apu.h │ ├── cart.cpp │ ├── cart.h │ ├── corePart.cpp │ ├── corePart.h │ ├── cpu.cpp │ ├── cpu.h │ ├── gamepad.cpp │ ├── gamepad.h │ ├── mapper000.cpp │ ├── mapper000.h │ ├── mapper001.cpp │ ├── mapper001.h │ ├── memBus.cpp │ ├── memBus.h │ ├── ppu.cpp │ └── ppu.h ├── emu │ ├── audio.cpp │ ├── audio.h │ ├── emuPart.cpp │ ├── emuPart.h │ ├── gameFile.cpp │ ├── gameFile.h │ ├── input.cpp │ ├── input.h │ ├── video.cpp │ └── video.h ├── gameManager.cpp ├── gameManager.h ├── mainApp.cpp ├── mainApp.h └── wx │ ├── frmWaitInputImp.cpp │ ├── frmWaitInputImp.h │ ├── mainFrame.cpp │ ├── mainFrame.h │ ├── mainFrameImp.cpp │ ├── mainFrameImp.h │ └── mainGUI.fbp ├── hdnes.doc ├── hdnes.sln ├── hdnes ├── ReadMe.txt ├── apu.cpp ├── apu.h ├── audio.cpp ├── audio.h ├── batchMapImp.cpp ├── batchMapImp.h ├── cart.cpp ├── cart.h ├── commonUtil.cpp ├── commonUtil.h ├── cpu.cpp ├── cpu.h ├── fraHDNesImp.cpp ├── fraHDNesImp.h ├── gameManager.cpp ├── gameManager.h ├── globalConst.h ├── hdnes.cbp ├── hdnes.h ├── hdnes.layout ├── hdnes.vcxproj ├── hdnes.vcxproj.filters ├── input.cpp ├── input.h ├── mainApp.cpp ├── mainApp.h ├── mapper.cpp ├── mapper.h ├── mapper0.cpp ├── mapper0.h ├── mapper1.cpp ├── mapper1.h ├── mapper10.cpp ├── mapper10.h ├── mapper16.cpp ├── mapper16.h ├── mapper2.cpp ├── mapper2.h ├── mapper3.cpp ├── mapper3.h ├── mapper4.cpp ├── mapper4.h ├── mapper7.cpp ├── mapper7.h ├── mapper9.cpp ├── mapper9.h ├── mapperList.h ├── memory.cpp ├── memory.h ├── paletteDialogImp.cpp ├── paletteDialogImp.h ├── ppu.cpp ├── ppu.h ├── stdafx.cpp ├── stdafx.h ├── sysSetting.cpp ├── sysSetting.h ├── sysState.cpp ├── sysState.h ├── targetver.h ├── video.cpp └── video.h ├── hdnesPackEditor ├── HDNes Graphics Pack Editor Tutorial.docx ├── classList.h ├── colourDialogClient.h ├── common.h ├── condition.cpp ├── condition.h ├── coreData.cpp ├── coreData.h ├── gameObjNode.cpp ├── gameObjNode.h ├── gameTile.cpp ├── gameTile.h ├── hdnesPackEditor.cbp ├── hdnesPackEditor.depend ├── hdnesPackEditor.fbp ├── hdnesPackEditor.layout ├── hdnesPackEditorcolourSelectDialog.cpp ├── hdnesPackEditorcolourSelectDialog.h ├── hdnesPackEditorimageDialog.cpp ├── hdnesPackEditorimageDialog.h ├── hdnesPackEditormainForm.cpp ├── hdnesPackEditormainForm.h ├── hdnesPackEditornewProjectDialog.cpp ├── hdnesPackEditornewProjectDialog.h ├── hdnesPackEditorpaletteDialog.cpp ├── hdnesPackEditorpaletteDialog.h ├── hdnesPackEditorreplacementDialog.cpp ├── hdnesPackEditorreplacementDialog.h ├── image.cpp ├── image.h ├── imageDialogClient.h ├── main.cpp ├── main.h ├── mainForm.cpp ├── mainForm.h ├── paletteDialogClient.h ├── paletteSwap.cpp ├── paletteSwap.h ├── tileReference.cpp └── tileReference.h ├── shader ├── hdnesBGF.glsl ├── hdnesBGV.glsl ├── hdnesSPF1.glsl ├── hdnesSPF2.glsl └── hdnesSPV.glsl ├── webDoc └── overview │ ├── gwd_workspace.json │ ├── overview.html │ └── overview_groups_archive └── wxwidget ├── formHDNes.cpp ├── formHDNes.fbp └── formHDNes.h /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkwong98/HDNes/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkwong98/HDNes/HEAD/.gitignore -------------------------------------------------------------------------------- /NESDoc.ods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkwong98/HDNes/HEAD/NESDoc.ods -------------------------------------------------------------------------------- /Rewrite/HDNes.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkwong98/HDNes/HEAD/Rewrite/HDNes.cbp -------------------------------------------------------------------------------- /Rewrite/HDNes.depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkwong98/HDNes/HEAD/Rewrite/HDNes.depend -------------------------------------------------------------------------------- /Rewrite/HDNes.layout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkwong98/HDNes/HEAD/Rewrite/HDNes.layout -------------------------------------------------------------------------------- /Rewrite/classList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkwong98/HDNes/HEAD/Rewrite/classList.h -------------------------------------------------------------------------------- /Rewrite/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkwong98/HDNes/HEAD/Rewrite/common.h -------------------------------------------------------------------------------- /Rewrite/core/apu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkwong98/HDNes/HEAD/Rewrite/core/apu.cpp -------------------------------------------------------------------------------- /Rewrite/core/apu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkwong98/HDNes/HEAD/Rewrite/core/apu.h -------------------------------------------------------------------------------- /Rewrite/core/cart.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkwong98/HDNes/HEAD/Rewrite/core/cart.cpp -------------------------------------------------------------------------------- /Rewrite/core/cart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkwong98/HDNes/HEAD/Rewrite/core/cart.h -------------------------------------------------------------------------------- /Rewrite/core/corePart.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkwong98/HDNes/HEAD/Rewrite/core/corePart.cpp -------------------------------------------------------------------------------- /Rewrite/core/corePart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkwong98/HDNes/HEAD/Rewrite/core/corePart.h -------------------------------------------------------------------------------- /Rewrite/core/cpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkwong98/HDNes/HEAD/Rewrite/core/cpu.cpp -------------------------------------------------------------------------------- /Rewrite/core/cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkwong98/HDNes/HEAD/Rewrite/core/cpu.h -------------------------------------------------------------------------------- /Rewrite/core/gamepad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkwong98/HDNes/HEAD/Rewrite/core/gamepad.cpp -------------------------------------------------------------------------------- /Rewrite/core/gamepad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkwong98/HDNes/HEAD/Rewrite/core/gamepad.h -------------------------------------------------------------------------------- /Rewrite/core/mapper000.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkwong98/HDNes/HEAD/Rewrite/core/mapper000.cpp -------------------------------------------------------------------------------- /Rewrite/core/mapper000.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkwong98/HDNes/HEAD/Rewrite/core/mapper000.h -------------------------------------------------------------------------------- /Rewrite/core/mapper001.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkwong98/HDNes/HEAD/Rewrite/core/mapper001.cpp -------------------------------------------------------------------------------- /Rewrite/core/mapper001.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkwong98/HDNes/HEAD/Rewrite/core/mapper001.h -------------------------------------------------------------------------------- /Rewrite/core/memBus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkwong98/HDNes/HEAD/Rewrite/core/memBus.cpp -------------------------------------------------------------------------------- /Rewrite/core/memBus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkwong98/HDNes/HEAD/Rewrite/core/memBus.h -------------------------------------------------------------------------------- /Rewrite/core/ppu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkwong98/HDNes/HEAD/Rewrite/core/ppu.cpp -------------------------------------------------------------------------------- /Rewrite/core/ppu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkwong98/HDNes/HEAD/Rewrite/core/ppu.h -------------------------------------------------------------------------------- /Rewrite/emu/audio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkwong98/HDNes/HEAD/Rewrite/emu/audio.cpp -------------------------------------------------------------------------------- /Rewrite/emu/audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkwong98/HDNes/HEAD/Rewrite/emu/audio.h -------------------------------------------------------------------------------- /Rewrite/emu/emuPart.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkwong98/HDNes/HEAD/Rewrite/emu/emuPart.cpp -------------------------------------------------------------------------------- /Rewrite/emu/emuPart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkwong98/HDNes/HEAD/Rewrite/emu/emuPart.h -------------------------------------------------------------------------------- /Rewrite/emu/gameFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkwong98/HDNes/HEAD/Rewrite/emu/gameFile.cpp -------------------------------------------------------------------------------- /Rewrite/emu/gameFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkwong98/HDNes/HEAD/Rewrite/emu/gameFile.h -------------------------------------------------------------------------------- /Rewrite/emu/input.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkwong98/HDNes/HEAD/Rewrite/emu/input.cpp -------------------------------------------------------------------------------- /Rewrite/emu/input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkwong98/HDNes/HEAD/Rewrite/emu/input.h -------------------------------------------------------------------------------- /Rewrite/emu/video.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkwong98/HDNes/HEAD/Rewrite/emu/video.cpp -------------------------------------------------------------------------------- /Rewrite/emu/video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkwong98/HDNes/HEAD/Rewrite/emu/video.h -------------------------------------------------------------------------------- /Rewrite/gameManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkwong98/HDNes/HEAD/Rewrite/gameManager.cpp -------------------------------------------------------------------------------- /Rewrite/gameManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkwong98/HDNes/HEAD/Rewrite/gameManager.h -------------------------------------------------------------------------------- /Rewrite/mainApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkwong98/HDNes/HEAD/Rewrite/mainApp.cpp -------------------------------------------------------------------------------- /Rewrite/mainApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkwong98/HDNes/HEAD/Rewrite/mainApp.h -------------------------------------------------------------------------------- /Rewrite/wx/frmWaitInputImp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkwong98/HDNes/HEAD/Rewrite/wx/frmWaitInputImp.cpp -------------------------------------------------------------------------------- /Rewrite/wx/frmWaitInputImp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkwong98/HDNes/HEAD/Rewrite/wx/frmWaitInputImp.h -------------------------------------------------------------------------------- /Rewrite/wx/mainFrame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkwong98/HDNes/HEAD/Rewrite/wx/mainFrame.cpp -------------------------------------------------------------------------------- /Rewrite/wx/mainFrame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkwong98/HDNes/HEAD/Rewrite/wx/mainFrame.h -------------------------------------------------------------------------------- /Rewrite/wx/mainFrameImp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkwong98/HDNes/HEAD/Rewrite/wx/mainFrameImp.cpp -------------------------------------------------------------------------------- /Rewrite/wx/mainFrameImp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkwong98/HDNes/HEAD/Rewrite/wx/mainFrameImp.h -------------------------------------------------------------------------------- /Rewrite/wx/mainGUI.fbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkwong98/HDNes/HEAD/Rewrite/wx/mainGUI.fbp -------------------------------------------------------------------------------- /hdnes.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkwong98/HDNes/HEAD/hdnes.doc -------------------------------------------------------------------------------- /hdnes.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkwong98/HDNes/HEAD/hdnes.sln -------------------------------------------------------------------------------- /hdnes/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkwong98/HDNes/HEAD/hdnes/ReadMe.txt -------------------------------------------------------------------------------- /hdnes/apu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkwong98/HDNes/HEAD/hdnes/apu.cpp -------------------------------------------------------------------------------- /hdnes/apu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkwong98/HDNes/HEAD/hdnes/apu.h -------------------------------------------------------------------------------- /hdnes/audio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkwong98/HDNes/HEAD/hdnes/audio.cpp -------------------------------------------------------------------------------- /hdnes/audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkwong98/HDNes/HEAD/hdnes/audio.h -------------------------------------------------------------------------------- /hdnes/batchMapImp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkwong98/HDNes/HEAD/hdnes/batchMapImp.cpp -------------------------------------------------------------------------------- /hdnes/batchMapImp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkwong98/HDNes/HEAD/hdnes/batchMapImp.h -------------------------------------------------------------------------------- /hdnes/cart.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkwong98/HDNes/HEAD/hdnes/cart.cpp -------------------------------------------------------------------------------- /hdnes/cart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkwong98/HDNes/HEAD/hdnes/cart.h -------------------------------------------------------------------------------- /hdnes/commonUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkwong98/HDNes/HEAD/hdnes/commonUtil.cpp -------------------------------------------------------------------------------- /hdnes/commonUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkwong98/HDNes/HEAD/hdnes/commonUtil.h -------------------------------------------------------------------------------- /hdnes/cpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkwong98/HDNes/HEAD/hdnes/cpu.cpp -------------------------------------------------------------------------------- /hdnes/cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkwong98/HDNes/HEAD/hdnes/cpu.h -------------------------------------------------------------------------------- /hdnes/fraHDNesImp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkwong98/HDNes/HEAD/hdnes/fraHDNesImp.cpp -------------------------------------------------------------------------------- /hdnes/fraHDNesImp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkwong98/HDNes/HEAD/hdnes/fraHDNesImp.h -------------------------------------------------------------------------------- /hdnes/gameManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkwong98/HDNes/HEAD/hdnes/gameManager.cpp -------------------------------------------------------------------------------- /hdnes/gameManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkwong98/HDNes/HEAD/hdnes/gameManager.h -------------------------------------------------------------------------------- /hdnes/globalConst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkwong98/HDNes/HEAD/hdnes/globalConst.h -------------------------------------------------------------------------------- /hdnes/hdnes.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkwong98/HDNes/HEAD/hdnes/hdnes.cbp -------------------------------------------------------------------------------- /hdnes/hdnes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkwong98/HDNes/HEAD/hdnes/hdnes.h -------------------------------------------------------------------------------- /hdnes/hdnes.layout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkwong98/HDNes/HEAD/hdnes/hdnes.layout -------------------------------------------------------------------------------- /hdnes/hdnes.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkwong98/HDNes/HEAD/hdnes/hdnes.vcxproj -------------------------------------------------------------------------------- /hdnes/hdnes.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkwong98/HDNes/HEAD/hdnes/hdnes.vcxproj.filters -------------------------------------------------------------------------------- /hdnes/input.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkwong98/HDNes/HEAD/hdnes/input.cpp -------------------------------------------------------------------------------- /hdnes/input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkwong98/HDNes/HEAD/hdnes/input.h -------------------------------------------------------------------------------- /hdnes/mainApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkwong98/HDNes/HEAD/hdnes/mainApp.cpp -------------------------------------------------------------------------------- /hdnes/mainApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkwong98/HDNes/HEAD/hdnes/mainApp.h -------------------------------------------------------------------------------- /hdnes/mapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkwong98/HDNes/HEAD/hdnes/mapper.cpp -------------------------------------------------------------------------------- /hdnes/mapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkwong98/HDNes/HEAD/hdnes/mapper.h -------------------------------------------------------------------------------- /hdnes/mapper0.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkwong98/HDNes/HEAD/hdnes/mapper0.cpp -------------------------------------------------------------------------------- /hdnes/mapper0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkwong98/HDNes/HEAD/hdnes/mapper0.h -------------------------------------------------------------------------------- /hdnes/mapper1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkwong98/HDNes/HEAD/hdnes/mapper1.cpp -------------------------------------------------------------------------------- /hdnes/mapper1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkwong98/HDNes/HEAD/hdnes/mapper1.h -------------------------------------------------------------------------------- /hdnes/mapper10.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkwong98/HDNes/HEAD/hdnes/mapper10.cpp -------------------------------------------------------------------------------- /hdnes/mapper10.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkwong98/HDNes/HEAD/hdnes/mapper10.h -------------------------------------------------------------------------------- /hdnes/mapper16.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkwong98/HDNes/HEAD/hdnes/mapper16.cpp -------------------------------------------------------------------------------- /hdnes/mapper16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkwong98/HDNes/HEAD/hdnes/mapper16.h -------------------------------------------------------------------------------- /hdnes/mapper2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkwong98/HDNes/HEAD/hdnes/mapper2.cpp -------------------------------------------------------------------------------- /hdnes/mapper2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkwong98/HDNes/HEAD/hdnes/mapper2.h -------------------------------------------------------------------------------- /hdnes/mapper3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkwong98/HDNes/HEAD/hdnes/mapper3.cpp -------------------------------------------------------------------------------- /hdnes/mapper3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkwong98/HDNes/HEAD/hdnes/mapper3.h -------------------------------------------------------------------------------- /hdnes/mapper4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkwong98/HDNes/HEAD/hdnes/mapper4.cpp -------------------------------------------------------------------------------- /hdnes/mapper4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkwong98/HDNes/HEAD/hdnes/mapper4.h -------------------------------------------------------------------------------- /hdnes/mapper7.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkwong98/HDNes/HEAD/hdnes/mapper7.cpp -------------------------------------------------------------------------------- /hdnes/mapper7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkwong98/HDNes/HEAD/hdnes/mapper7.h -------------------------------------------------------------------------------- /hdnes/mapper9.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkwong98/HDNes/HEAD/hdnes/mapper9.cpp -------------------------------------------------------------------------------- /hdnes/mapper9.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkwong98/HDNes/HEAD/hdnes/mapper9.h -------------------------------------------------------------------------------- /hdnes/mapperList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkwong98/HDNes/HEAD/hdnes/mapperList.h -------------------------------------------------------------------------------- /hdnes/memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkwong98/HDNes/HEAD/hdnes/memory.cpp -------------------------------------------------------------------------------- /hdnes/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkwong98/HDNes/HEAD/hdnes/memory.h -------------------------------------------------------------------------------- /hdnes/paletteDialogImp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkwong98/HDNes/HEAD/hdnes/paletteDialogImp.cpp -------------------------------------------------------------------------------- /hdnes/paletteDialogImp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkwong98/HDNes/HEAD/hdnes/paletteDialogImp.h -------------------------------------------------------------------------------- /hdnes/ppu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkwong98/HDNes/HEAD/hdnes/ppu.cpp -------------------------------------------------------------------------------- /hdnes/ppu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkwong98/HDNes/HEAD/hdnes/ppu.h -------------------------------------------------------------------------------- /hdnes/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkwong98/HDNes/HEAD/hdnes/stdafx.cpp -------------------------------------------------------------------------------- /hdnes/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkwong98/HDNes/HEAD/hdnes/stdafx.h -------------------------------------------------------------------------------- /hdnes/sysSetting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkwong98/HDNes/HEAD/hdnes/sysSetting.cpp -------------------------------------------------------------------------------- /hdnes/sysSetting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkwong98/HDNes/HEAD/hdnes/sysSetting.h -------------------------------------------------------------------------------- /hdnes/sysState.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkwong98/HDNes/HEAD/hdnes/sysState.cpp -------------------------------------------------------------------------------- /hdnes/sysState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkwong98/HDNes/HEAD/hdnes/sysState.h -------------------------------------------------------------------------------- /hdnes/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkwong98/HDNes/HEAD/hdnes/targetver.h -------------------------------------------------------------------------------- /hdnes/video.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkwong98/HDNes/HEAD/hdnes/video.cpp -------------------------------------------------------------------------------- /hdnes/video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkwong98/HDNes/HEAD/hdnes/video.h -------------------------------------------------------------------------------- /hdnesPackEditor/HDNes Graphics Pack Editor Tutorial.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkwong98/HDNes/HEAD/hdnesPackEditor/HDNes Graphics Pack Editor Tutorial.docx -------------------------------------------------------------------------------- /hdnesPackEditor/classList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkwong98/HDNes/HEAD/hdnesPackEditor/classList.h -------------------------------------------------------------------------------- /hdnesPackEditor/colourDialogClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkwong98/HDNes/HEAD/hdnesPackEditor/colourDialogClient.h -------------------------------------------------------------------------------- /hdnesPackEditor/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkwong98/HDNes/HEAD/hdnesPackEditor/common.h -------------------------------------------------------------------------------- /hdnesPackEditor/condition.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkwong98/HDNes/HEAD/hdnesPackEditor/condition.cpp -------------------------------------------------------------------------------- /hdnesPackEditor/condition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkwong98/HDNes/HEAD/hdnesPackEditor/condition.h -------------------------------------------------------------------------------- /hdnesPackEditor/coreData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkwong98/HDNes/HEAD/hdnesPackEditor/coreData.cpp -------------------------------------------------------------------------------- /hdnesPackEditor/coreData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkwong98/HDNes/HEAD/hdnesPackEditor/coreData.h -------------------------------------------------------------------------------- /hdnesPackEditor/gameObjNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkwong98/HDNes/HEAD/hdnesPackEditor/gameObjNode.cpp -------------------------------------------------------------------------------- /hdnesPackEditor/gameObjNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkwong98/HDNes/HEAD/hdnesPackEditor/gameObjNode.h -------------------------------------------------------------------------------- /hdnesPackEditor/gameTile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkwong98/HDNes/HEAD/hdnesPackEditor/gameTile.cpp -------------------------------------------------------------------------------- /hdnesPackEditor/gameTile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkwong98/HDNes/HEAD/hdnesPackEditor/gameTile.h -------------------------------------------------------------------------------- /hdnesPackEditor/hdnesPackEditor.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkwong98/HDNes/HEAD/hdnesPackEditor/hdnesPackEditor.cbp -------------------------------------------------------------------------------- /hdnesPackEditor/hdnesPackEditor.depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkwong98/HDNes/HEAD/hdnesPackEditor/hdnesPackEditor.depend -------------------------------------------------------------------------------- /hdnesPackEditor/hdnesPackEditor.fbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkwong98/HDNes/HEAD/hdnesPackEditor/hdnesPackEditor.fbp -------------------------------------------------------------------------------- /hdnesPackEditor/hdnesPackEditor.layout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkwong98/HDNes/HEAD/hdnesPackEditor/hdnesPackEditor.layout -------------------------------------------------------------------------------- /hdnesPackEditor/hdnesPackEditorcolourSelectDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkwong98/HDNes/HEAD/hdnesPackEditor/hdnesPackEditorcolourSelectDialog.cpp -------------------------------------------------------------------------------- /hdnesPackEditor/hdnesPackEditorcolourSelectDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkwong98/HDNes/HEAD/hdnesPackEditor/hdnesPackEditorcolourSelectDialog.h -------------------------------------------------------------------------------- /hdnesPackEditor/hdnesPackEditorimageDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkwong98/HDNes/HEAD/hdnesPackEditor/hdnesPackEditorimageDialog.cpp -------------------------------------------------------------------------------- /hdnesPackEditor/hdnesPackEditorimageDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkwong98/HDNes/HEAD/hdnesPackEditor/hdnesPackEditorimageDialog.h -------------------------------------------------------------------------------- /hdnesPackEditor/hdnesPackEditormainForm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkwong98/HDNes/HEAD/hdnesPackEditor/hdnesPackEditormainForm.cpp -------------------------------------------------------------------------------- /hdnesPackEditor/hdnesPackEditormainForm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkwong98/HDNes/HEAD/hdnesPackEditor/hdnesPackEditormainForm.h -------------------------------------------------------------------------------- /hdnesPackEditor/hdnesPackEditornewProjectDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkwong98/HDNes/HEAD/hdnesPackEditor/hdnesPackEditornewProjectDialog.cpp -------------------------------------------------------------------------------- /hdnesPackEditor/hdnesPackEditornewProjectDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkwong98/HDNes/HEAD/hdnesPackEditor/hdnesPackEditornewProjectDialog.h -------------------------------------------------------------------------------- /hdnesPackEditor/hdnesPackEditorpaletteDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkwong98/HDNes/HEAD/hdnesPackEditor/hdnesPackEditorpaletteDialog.cpp -------------------------------------------------------------------------------- /hdnesPackEditor/hdnesPackEditorpaletteDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkwong98/HDNes/HEAD/hdnesPackEditor/hdnesPackEditorpaletteDialog.h -------------------------------------------------------------------------------- /hdnesPackEditor/hdnesPackEditorreplacementDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkwong98/HDNes/HEAD/hdnesPackEditor/hdnesPackEditorreplacementDialog.cpp -------------------------------------------------------------------------------- /hdnesPackEditor/hdnesPackEditorreplacementDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkwong98/HDNes/HEAD/hdnesPackEditor/hdnesPackEditorreplacementDialog.h -------------------------------------------------------------------------------- /hdnesPackEditor/image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkwong98/HDNes/HEAD/hdnesPackEditor/image.cpp -------------------------------------------------------------------------------- /hdnesPackEditor/image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkwong98/HDNes/HEAD/hdnesPackEditor/image.h -------------------------------------------------------------------------------- /hdnesPackEditor/imageDialogClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkwong98/HDNes/HEAD/hdnesPackEditor/imageDialogClient.h -------------------------------------------------------------------------------- /hdnesPackEditor/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkwong98/HDNes/HEAD/hdnesPackEditor/main.cpp -------------------------------------------------------------------------------- /hdnesPackEditor/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkwong98/HDNes/HEAD/hdnesPackEditor/main.h -------------------------------------------------------------------------------- /hdnesPackEditor/mainForm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkwong98/HDNes/HEAD/hdnesPackEditor/mainForm.cpp -------------------------------------------------------------------------------- /hdnesPackEditor/mainForm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkwong98/HDNes/HEAD/hdnesPackEditor/mainForm.h -------------------------------------------------------------------------------- /hdnesPackEditor/paletteDialogClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkwong98/HDNes/HEAD/hdnesPackEditor/paletteDialogClient.h -------------------------------------------------------------------------------- /hdnesPackEditor/paletteSwap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkwong98/HDNes/HEAD/hdnesPackEditor/paletteSwap.cpp -------------------------------------------------------------------------------- /hdnesPackEditor/paletteSwap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkwong98/HDNes/HEAD/hdnesPackEditor/paletteSwap.h -------------------------------------------------------------------------------- /hdnesPackEditor/tileReference.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkwong98/HDNes/HEAD/hdnesPackEditor/tileReference.cpp -------------------------------------------------------------------------------- /hdnesPackEditor/tileReference.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkwong98/HDNes/HEAD/hdnesPackEditor/tileReference.h -------------------------------------------------------------------------------- /shader/hdnesBGF.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkwong98/HDNes/HEAD/shader/hdnesBGF.glsl -------------------------------------------------------------------------------- /shader/hdnesBGV.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkwong98/HDNes/HEAD/shader/hdnesBGV.glsl -------------------------------------------------------------------------------- /shader/hdnesSPF1.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkwong98/HDNes/HEAD/shader/hdnesSPF1.glsl -------------------------------------------------------------------------------- /shader/hdnesSPF2.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkwong98/HDNes/HEAD/shader/hdnesSPF2.glsl -------------------------------------------------------------------------------- /shader/hdnesSPV.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkwong98/HDNes/HEAD/shader/hdnesSPV.glsl -------------------------------------------------------------------------------- /webDoc/overview/gwd_workspace.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkwong98/HDNes/HEAD/webDoc/overview/gwd_workspace.json -------------------------------------------------------------------------------- /webDoc/overview/overview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkwong98/HDNes/HEAD/webDoc/overview/overview.html -------------------------------------------------------------------------------- /webDoc/overview/overview_groups_archive: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkwong98/HDNes/HEAD/webDoc/overview/overview_groups_archive -------------------------------------------------------------------------------- /wxwidget/formHDNes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkwong98/HDNes/HEAD/wxwidget/formHDNes.cpp -------------------------------------------------------------------------------- /wxwidget/formHDNes.fbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkwong98/HDNes/HEAD/wxwidget/formHDNes.fbp -------------------------------------------------------------------------------- /wxwidget/formHDNes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkwong98/HDNes/HEAD/wxwidget/formHDNes.h --------------------------------------------------------------------------------