├── .github ├── funding.yml └── workflows │ ├── build.yml │ └── contrib.yml ├── .gitignore ├── artifact.bat ├── contrib ├── Makefile ├── README.md ├── nlohmann │ └── json.hpp ├── nsf2flac ├── nsf2wav.cpp ├── nsfmeta.cpp └── nsfplay.h ├── delete_ini.bat ├── distribute.bat ├── distribute └── nsfplay.txt ├── docs ├── index.html └── screenshot.png ├── in_yansf ├── direct.h ├── in_nsf.cpp ├── in_nsf.h ├── in_nsf_w.txt ├── in_yansf.vcproj └── in_yansf.vcxproj ├── kbnsf ├── in_nsf.cpp ├── in_nsf.def ├── in_nsf.h ├── in_nsf_k.txt ├── kbnsf.rc ├── kbnsf.vcproj ├── kbnsf.vcxproj ├── kmp_hack.cpp └── resource.h ├── libemuwa2 ├── emu_outdisk.cpp ├── emu_outdisk.h ├── emu_outmod.cpp ├── emu_outmod.h ├── emu_winamp.cpp ├── emu_winamp.h ├── libemuwa2.vcproj ├── libemuwa2.vcxproj └── winamp2 │ ├── DSP.H │ ├── GEN.H │ ├── IN2.H │ ├── OUT.H │ ├── WINAMP_SDK_IS_REQUIRED.TXT │ ├── frontend.h │ ├── ipc_pe.h │ ├── wa_dlg.h │ ├── wa_hotkeys.h │ └── wa_ipc.h ├── nsfplay.sln ├── nsfplay ├── nsfplay.cpp ├── nsfplay.h ├── nsfplay.rc ├── nsfplay.vcproj ├── nsfplay.vcxproj ├── nsfplayDlg.cpp ├── nsfplayDlg.h ├── res │ ├── about.ico │ ├── config.ico │ ├── next.ico │ ├── nsfplay.ico │ ├── nsfplay.manifest │ ├── nsfplay.rc2 │ ├── nsfplug.ico │ ├── open.ico │ ├── pause.ico │ ├── play.ico │ ├── prev.ico │ ├── prop.ico │ ├── stop.ico │ ├── volume.bmp │ ├── volume.ico │ └── waveout.ico ├── resource.h ├── stdafx.cpp └── stdafx.h ├── nsfplug_ui ├── KeyDialog.cpp ├── KeyDialog.h ├── KeyHeader.cpp ├── KeyHeader.h ├── KeyWindow.cpp ├── KeyWindow.h ├── NSFApuPanel.cpp ├── NSFApuPanel.h ├── NSFAudioPanel.cpp ├── NSFAudioPanel.h ├── NSFConfigDialog.cpp ├── NSFConfigDialog.h ├── NSFConfigPageDevice.cpp ├── NSFConfigPageDevice.h ├── NSFConfigPageMain.cpp ├── NSFConfigPageMain.h ├── NSFDialog.cpp ├── NSFDialog.h ├── NSFDialogModel.cpp ├── NSFDialogModel.h ├── NSFDialogs.cpp ├── NSFDialogs.h ├── NSFDmcPanel.cpp ├── NSFDmcPanel.h ├── NSFEasyDialog.cpp ├── NSFEasyDialog.h ├── NSFFME7Panel.cpp ├── NSFFME7Panel.h ├── NSFFdsPanel.cpp ├── NSFFdsPanel.h ├── NSFInfoDialog.cpp ├── NSFInfoDialog.h ├── NSFMMC5Panel.cpp ├── NSFMMC5Panel.h ├── NSFMaskDialog.cpp ├── NSFMaskDialog.h ├── NSFMemoryDialog.cpp ├── NSFMemoryDialog.h ├── NSFMemoryWriteDialog.cpp ├── NSFMemoryWriteDialog.h ├── NSFMixerDialog.cpp ├── NSFMixerDialog.h ├── NSFMixerPanel.cpp ├── NSFMixerPanel.h ├── NSFN106Panel.cpp ├── NSFN106Panel.h ├── NSFPanDialog.cpp ├── NSFPanDialog.h ├── NSFPanPanel.cpp ├── NSFPanPanel.h ├── NSFPresetDialog.cpp ├── NSFPresetDialog.h ├── NSFTrackDialog.cpp ├── NSFTrackDialog.h ├── NSFTrackSetupDialog.cpp ├── NSFTrackSetupDialog.h ├── NSFVRC6Panel.cpp ├── NSFVRC6Panel.h ├── NSFVRC7Panel.cpp ├── NSFVRC7Panel.h ├── PresetManager.cpp ├── PresetManager.h ├── hlp │ ├── intro.htm │ ├── nsfplug.chw │ ├── nsfplug.hhc │ └── nsfplug.hhp ├── ico00001.ico ├── icon1.ico ├── icon2.ico ├── nsf_setup.cpp ├── nsf_setup.def ├── nsf_setup.h ├── nsf_setup.rc ├── nsfplug.hhk ├── nsfplug.ico ├── nsfplug_ui.h ├── nsfplug_ui.vcproj ├── nsfplug_ui.vcxproj ├── res │ ├── ascii.bmp │ ├── bitmap1.bmp │ ├── digit.bmp │ ├── keyboard.bmp │ ├── keyheader.bmp │ ├── logo.bmp │ ├── noise_lamp.bmp │ ├── nsf.ico │ └── nsf_setup.rc2 ├── resource.h ├── stdafx.cpp ├── stdafx.h └── tempfile.tmp ├── push_winamp.bat ├── readme.txt ├── test ├── main.cpp ├── test.vcproj └── test.vcxproj ├── vcm ├── ReadMe.txt ├── group.cpp ├── ui │ └── win32 │ │ ├── ReadMe.txt │ │ ├── res │ │ ├── win32.ico │ │ ├── win32.manifest │ │ └── win32.rc2 │ │ ├── resource.h │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ ├── vcmCheck.cpp │ │ ├── vcmCheck.h │ │ ├── vcmCombo.cpp │ │ ├── vcmCombo.h │ │ ├── vcmCtrl.cpp │ │ ├── vcmCtrl.h │ │ ├── vcmDlg.cpp │ │ ├── vcmDlg.h │ │ ├── vcmSlider.cpp │ │ ├── vcmSlider.h │ │ ├── vcmSpin.cpp │ │ ├── vcmSpin.h │ │ ├── vcmText.cpp │ │ ├── vcmText.h │ │ ├── vcmTree.cpp │ │ ├── vcmTree.h │ │ ├── vcm_ui.vcproj │ │ ├── win32.cpp │ │ ├── win32.h │ │ └── win32.rc ├── value.cpp ├── vcm.h ├── vcm.vcproj ├── vcm.vcxproj └── vcm_ui.h ├── win ├── nsf_tag.cpp ├── nsf_tag.h ├── nsfconfig_ini.cpp ├── nsfconfig_ini.h ├── plugin │ ├── kbmedia │ │ ├── plugin.h │ │ └── sdk │ │ │ └── kmp_pi.h │ └── winamp2 │ │ ├── in_module.cpp │ │ ├── in_module.h │ │ ├── in_module_msp.cpp │ │ ├── readme.txt │ │ └── sdk │ │ ├── FRONTEND.H │ │ ├── IN2.H │ │ └── OUT.H └── win.vcxproj └── xgm ├── Makefile ├── browser └── browser.h ├── debugout.h ├── devices ├── Audio │ ├── MedianFilter.cpp │ ├── MedianFilter.h │ ├── amplifier.h │ ├── echo.cpp │ ├── echo.h │ ├── fader.h │ ├── filter.cpp │ ├── filter.h │ ├── mixer.h │ ├── rconv.cpp │ └── rconv.h ├── CPU │ ├── km6502 │ │ ├── km6280.h │ │ ├── km6280m.h │ │ ├── km6502.h │ │ ├── km6502.txt │ │ ├── km6502cd.h │ │ ├── km6502ct.h │ │ ├── km6502ex.h │ │ ├── km6502ft.h │ │ ├── km6502m.h │ │ ├── km6502ot.h │ │ ├── km65c02.h │ │ ├── km65c02m.h │ │ └── kmconfig.h │ ├── nes_cpu.cpp │ └── nes_cpu.h ├── Memory │ ├── nes_bank.cpp │ ├── nes_bank.h │ ├── nes_mem.cpp │ ├── nes_mem.h │ ├── nsf2_vectors.cpp │ ├── nsf2_vectors.h │ ├── ram64k.cpp │ └── ram64k.h ├── Misc │ ├── block.h │ ├── detect.cpp │ ├── detect.h │ ├── log_cpu.cpp │ ├── log_cpu.h │ ├── nes_detect.cpp │ ├── nes_detect.h │ ├── nsf2_irq.cpp │ └── nsf2_irq.h ├── Sound │ ├── legacy │ │ ├── 2413tone.h │ │ ├── 281btone.h │ │ ├── 281btone_plgdavid.h │ │ ├── emu2149.c │ │ ├── emu2149.h │ │ ├── emu2212.c │ │ ├── emu2212.h │ │ ├── emu2413.c │ │ ├── emu2413.h │ │ ├── emutypes.h │ │ ├── vrc7tone_ft35.h │ │ ├── vrc7tone_ft36.h │ │ ├── vrc7tone_kt1.h │ │ ├── vrc7tone_kt2.h │ │ ├── vrc7tone_mo.h │ │ ├── vrc7tone_nuke.h │ │ └── vrc7tone_rw.h │ ├── nes_apu.cpp │ ├── nes_apu.h │ ├── nes_dmc.cpp │ ├── nes_dmc.h │ ├── nes_fds.cpp │ ├── nes_fds.h │ ├── nes_fme7.cpp │ ├── nes_fme7.h │ ├── nes_mmc5.cpp │ ├── nes_mmc5.h │ ├── nes_n106.cpp │ ├── nes_n106.h │ ├── nes_vrc6.cpp │ ├── nes_vrc6.h │ ├── nes_vrc7.cpp │ └── nes_vrc7.h ├── all.h ├── device.h └── devinfo.h ├── fileutil.cpp ├── fileutil.h ├── player ├── all.h ├── midi_interface.h ├── nsf │ ├── nsf.cpp │ ├── nsf.h │ ├── nsfconfig.cpp │ ├── nsfconfig.h │ ├── nsfplay.cpp │ ├── nsfplay.h │ └── pls │ │ ├── ppls.cpp │ │ ├── ppls.h │ │ ├── sstream.cpp │ │ └── sstream.h ├── player.h └── soundData.h ├── readme.txt ├── readme_ja.txt ├── utils └── tagctrl.h ├── version.h ├── xgm.h ├── xgm.vcproj ├── xgm.vcxproj └── xtypes.h /.github/funding.yml: -------------------------------------------------------------------------------- 1 | patreon: rainwarrior -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/contrib.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/.github/workflows/contrib.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/.gitignore -------------------------------------------------------------------------------- /artifact.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/artifact.bat -------------------------------------------------------------------------------- /contrib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/contrib/Makefile -------------------------------------------------------------------------------- /contrib/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/contrib/README.md -------------------------------------------------------------------------------- /contrib/nlohmann/json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/contrib/nlohmann/json.hpp -------------------------------------------------------------------------------- /contrib/nsf2flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/contrib/nsf2flac -------------------------------------------------------------------------------- /contrib/nsf2wav.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/contrib/nsf2wav.cpp -------------------------------------------------------------------------------- /contrib/nsfmeta.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/contrib/nsfmeta.cpp -------------------------------------------------------------------------------- /contrib/nsfplay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/contrib/nsfplay.h -------------------------------------------------------------------------------- /delete_ini.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/delete_ini.bat -------------------------------------------------------------------------------- /distribute.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/distribute.bat -------------------------------------------------------------------------------- /distribute/nsfplay.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/distribute/nsfplay.txt -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/docs/screenshot.png -------------------------------------------------------------------------------- /in_yansf/direct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/in_yansf/direct.h -------------------------------------------------------------------------------- /in_yansf/in_nsf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/in_yansf/in_nsf.cpp -------------------------------------------------------------------------------- /in_yansf/in_nsf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/in_yansf/in_nsf.h -------------------------------------------------------------------------------- /in_yansf/in_nsf_w.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/in_yansf/in_nsf_w.txt -------------------------------------------------------------------------------- /in_yansf/in_yansf.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/in_yansf/in_yansf.vcproj -------------------------------------------------------------------------------- /in_yansf/in_yansf.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/in_yansf/in_yansf.vcxproj -------------------------------------------------------------------------------- /kbnsf/in_nsf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/kbnsf/in_nsf.cpp -------------------------------------------------------------------------------- /kbnsf/in_nsf.def: -------------------------------------------------------------------------------- 1 | EXPORTS 2 | kmp_GetTestModule 3 | -------------------------------------------------------------------------------- /kbnsf/in_nsf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/kbnsf/in_nsf.h -------------------------------------------------------------------------------- /kbnsf/in_nsf_k.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/kbnsf/in_nsf_k.txt -------------------------------------------------------------------------------- /kbnsf/kbnsf.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/kbnsf/kbnsf.rc -------------------------------------------------------------------------------- /kbnsf/kbnsf.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/kbnsf/kbnsf.vcproj -------------------------------------------------------------------------------- /kbnsf/kbnsf.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/kbnsf/kbnsf.vcxproj -------------------------------------------------------------------------------- /kbnsf/kmp_hack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/kbnsf/kmp_hack.cpp -------------------------------------------------------------------------------- /kbnsf/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/kbnsf/resource.h -------------------------------------------------------------------------------- /libemuwa2/emu_outdisk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/libemuwa2/emu_outdisk.cpp -------------------------------------------------------------------------------- /libemuwa2/emu_outdisk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/libemuwa2/emu_outdisk.h -------------------------------------------------------------------------------- /libemuwa2/emu_outmod.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/libemuwa2/emu_outmod.cpp -------------------------------------------------------------------------------- /libemuwa2/emu_outmod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/libemuwa2/emu_outmod.h -------------------------------------------------------------------------------- /libemuwa2/emu_winamp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/libemuwa2/emu_winamp.cpp -------------------------------------------------------------------------------- /libemuwa2/emu_winamp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/libemuwa2/emu_winamp.h -------------------------------------------------------------------------------- /libemuwa2/libemuwa2.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/libemuwa2/libemuwa2.vcproj -------------------------------------------------------------------------------- /libemuwa2/libemuwa2.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/libemuwa2/libemuwa2.vcxproj -------------------------------------------------------------------------------- /libemuwa2/winamp2/DSP.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/libemuwa2/winamp2/DSP.H -------------------------------------------------------------------------------- /libemuwa2/winamp2/GEN.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/libemuwa2/winamp2/GEN.H -------------------------------------------------------------------------------- /libemuwa2/winamp2/IN2.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/libemuwa2/winamp2/IN2.H -------------------------------------------------------------------------------- /libemuwa2/winamp2/OUT.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/libemuwa2/winamp2/OUT.H -------------------------------------------------------------------------------- /libemuwa2/winamp2/WINAMP_SDK_IS_REQUIRED.TXT: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libemuwa2/winamp2/frontend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/libemuwa2/winamp2/frontend.h -------------------------------------------------------------------------------- /libemuwa2/winamp2/ipc_pe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/libemuwa2/winamp2/ipc_pe.h -------------------------------------------------------------------------------- /libemuwa2/winamp2/wa_dlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/libemuwa2/winamp2/wa_dlg.h -------------------------------------------------------------------------------- /libemuwa2/winamp2/wa_hotkeys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/libemuwa2/winamp2/wa_hotkeys.h -------------------------------------------------------------------------------- /libemuwa2/winamp2/wa_ipc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/libemuwa2/winamp2/wa_ipc.h -------------------------------------------------------------------------------- /nsfplay.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/nsfplay.sln -------------------------------------------------------------------------------- /nsfplay/nsfplay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/nsfplay/nsfplay.cpp -------------------------------------------------------------------------------- /nsfplay/nsfplay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/nsfplay/nsfplay.h -------------------------------------------------------------------------------- /nsfplay/nsfplay.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/nsfplay/nsfplay.rc -------------------------------------------------------------------------------- /nsfplay/nsfplay.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/nsfplay/nsfplay.vcproj -------------------------------------------------------------------------------- /nsfplay/nsfplay.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/nsfplay/nsfplay.vcxproj -------------------------------------------------------------------------------- /nsfplay/nsfplayDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/nsfplay/nsfplayDlg.cpp -------------------------------------------------------------------------------- /nsfplay/nsfplayDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/nsfplay/nsfplayDlg.h -------------------------------------------------------------------------------- /nsfplay/res/about.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/nsfplay/res/about.ico -------------------------------------------------------------------------------- /nsfplay/res/config.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/nsfplay/res/config.ico -------------------------------------------------------------------------------- /nsfplay/res/next.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/nsfplay/res/next.ico -------------------------------------------------------------------------------- /nsfplay/res/nsfplay.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/nsfplay/res/nsfplay.ico -------------------------------------------------------------------------------- /nsfplay/res/nsfplay.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/nsfplay/res/nsfplay.manifest -------------------------------------------------------------------------------- /nsfplay/res/nsfplay.rc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/nsfplay/res/nsfplay.rc2 -------------------------------------------------------------------------------- /nsfplay/res/nsfplug.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/nsfplay/res/nsfplug.ico -------------------------------------------------------------------------------- /nsfplay/res/open.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/nsfplay/res/open.ico -------------------------------------------------------------------------------- /nsfplay/res/pause.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/nsfplay/res/pause.ico -------------------------------------------------------------------------------- /nsfplay/res/play.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/nsfplay/res/play.ico -------------------------------------------------------------------------------- /nsfplay/res/prev.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/nsfplay/res/prev.ico -------------------------------------------------------------------------------- /nsfplay/res/prop.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/nsfplay/res/prop.ico -------------------------------------------------------------------------------- /nsfplay/res/stop.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/nsfplay/res/stop.ico -------------------------------------------------------------------------------- /nsfplay/res/volume.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/nsfplay/res/volume.bmp -------------------------------------------------------------------------------- /nsfplay/res/volume.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/nsfplay/res/volume.ico -------------------------------------------------------------------------------- /nsfplay/res/waveout.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/nsfplay/res/waveout.ico -------------------------------------------------------------------------------- /nsfplay/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/nsfplay/resource.h -------------------------------------------------------------------------------- /nsfplay/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/nsfplay/stdafx.cpp -------------------------------------------------------------------------------- /nsfplay/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/nsfplay/stdafx.h -------------------------------------------------------------------------------- /nsfplug_ui/KeyDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/nsfplug_ui/KeyDialog.cpp -------------------------------------------------------------------------------- /nsfplug_ui/KeyDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/nsfplug_ui/KeyDialog.h -------------------------------------------------------------------------------- /nsfplug_ui/KeyHeader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/nsfplug_ui/KeyHeader.cpp -------------------------------------------------------------------------------- /nsfplug_ui/KeyHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/nsfplug_ui/KeyHeader.h -------------------------------------------------------------------------------- /nsfplug_ui/KeyWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/nsfplug_ui/KeyWindow.cpp -------------------------------------------------------------------------------- /nsfplug_ui/KeyWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/nsfplug_ui/KeyWindow.h -------------------------------------------------------------------------------- /nsfplug_ui/NSFApuPanel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/nsfplug_ui/NSFApuPanel.cpp -------------------------------------------------------------------------------- /nsfplug_ui/NSFApuPanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/nsfplug_ui/NSFApuPanel.h -------------------------------------------------------------------------------- /nsfplug_ui/NSFAudioPanel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/nsfplug_ui/NSFAudioPanel.cpp -------------------------------------------------------------------------------- /nsfplug_ui/NSFAudioPanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/nsfplug_ui/NSFAudioPanel.h -------------------------------------------------------------------------------- /nsfplug_ui/NSFConfigDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/nsfplug_ui/NSFConfigDialog.cpp -------------------------------------------------------------------------------- /nsfplug_ui/NSFConfigDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/nsfplug_ui/NSFConfigDialog.h -------------------------------------------------------------------------------- /nsfplug_ui/NSFConfigPageDevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/nsfplug_ui/NSFConfigPageDevice.cpp -------------------------------------------------------------------------------- /nsfplug_ui/NSFConfigPageDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/nsfplug_ui/NSFConfigPageDevice.h -------------------------------------------------------------------------------- /nsfplug_ui/NSFConfigPageMain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/nsfplug_ui/NSFConfigPageMain.cpp -------------------------------------------------------------------------------- /nsfplug_ui/NSFConfigPageMain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/nsfplug_ui/NSFConfigPageMain.h -------------------------------------------------------------------------------- /nsfplug_ui/NSFDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/nsfplug_ui/NSFDialog.cpp -------------------------------------------------------------------------------- /nsfplug_ui/NSFDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/nsfplug_ui/NSFDialog.h -------------------------------------------------------------------------------- /nsfplug_ui/NSFDialogModel.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nsfplug_ui/NSFDialogModel.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nsfplug_ui/NSFDialogs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/nsfplug_ui/NSFDialogs.cpp -------------------------------------------------------------------------------- /nsfplug_ui/NSFDialogs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/nsfplug_ui/NSFDialogs.h -------------------------------------------------------------------------------- /nsfplug_ui/NSFDmcPanel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/nsfplug_ui/NSFDmcPanel.cpp -------------------------------------------------------------------------------- /nsfplug_ui/NSFDmcPanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/nsfplug_ui/NSFDmcPanel.h -------------------------------------------------------------------------------- /nsfplug_ui/NSFEasyDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/nsfplug_ui/NSFEasyDialog.cpp -------------------------------------------------------------------------------- /nsfplug_ui/NSFEasyDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/nsfplug_ui/NSFEasyDialog.h -------------------------------------------------------------------------------- /nsfplug_ui/NSFFME7Panel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/nsfplug_ui/NSFFME7Panel.cpp -------------------------------------------------------------------------------- /nsfplug_ui/NSFFME7Panel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/nsfplug_ui/NSFFME7Panel.h -------------------------------------------------------------------------------- /nsfplug_ui/NSFFdsPanel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/nsfplug_ui/NSFFdsPanel.cpp -------------------------------------------------------------------------------- /nsfplug_ui/NSFFdsPanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/nsfplug_ui/NSFFdsPanel.h -------------------------------------------------------------------------------- /nsfplug_ui/NSFInfoDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/nsfplug_ui/NSFInfoDialog.cpp -------------------------------------------------------------------------------- /nsfplug_ui/NSFInfoDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/nsfplug_ui/NSFInfoDialog.h -------------------------------------------------------------------------------- /nsfplug_ui/NSFMMC5Panel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/nsfplug_ui/NSFMMC5Panel.cpp -------------------------------------------------------------------------------- /nsfplug_ui/NSFMMC5Panel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/nsfplug_ui/NSFMMC5Panel.h -------------------------------------------------------------------------------- /nsfplug_ui/NSFMaskDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/nsfplug_ui/NSFMaskDialog.cpp -------------------------------------------------------------------------------- /nsfplug_ui/NSFMaskDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/nsfplug_ui/NSFMaskDialog.h -------------------------------------------------------------------------------- /nsfplug_ui/NSFMemoryDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/nsfplug_ui/NSFMemoryDialog.cpp -------------------------------------------------------------------------------- /nsfplug_ui/NSFMemoryDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/nsfplug_ui/NSFMemoryDialog.h -------------------------------------------------------------------------------- /nsfplug_ui/NSFMemoryWriteDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/nsfplug_ui/NSFMemoryWriteDialog.cpp -------------------------------------------------------------------------------- /nsfplug_ui/NSFMemoryWriteDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/nsfplug_ui/NSFMemoryWriteDialog.h -------------------------------------------------------------------------------- /nsfplug_ui/NSFMixerDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/nsfplug_ui/NSFMixerDialog.cpp -------------------------------------------------------------------------------- /nsfplug_ui/NSFMixerDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/nsfplug_ui/NSFMixerDialog.h -------------------------------------------------------------------------------- /nsfplug_ui/NSFMixerPanel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/nsfplug_ui/NSFMixerPanel.cpp -------------------------------------------------------------------------------- /nsfplug_ui/NSFMixerPanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/nsfplug_ui/NSFMixerPanel.h -------------------------------------------------------------------------------- /nsfplug_ui/NSFN106Panel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/nsfplug_ui/NSFN106Panel.cpp -------------------------------------------------------------------------------- /nsfplug_ui/NSFN106Panel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/nsfplug_ui/NSFN106Panel.h -------------------------------------------------------------------------------- /nsfplug_ui/NSFPanDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/nsfplug_ui/NSFPanDialog.cpp -------------------------------------------------------------------------------- /nsfplug_ui/NSFPanDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/nsfplug_ui/NSFPanDialog.h -------------------------------------------------------------------------------- /nsfplug_ui/NSFPanPanel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/nsfplug_ui/NSFPanPanel.cpp -------------------------------------------------------------------------------- /nsfplug_ui/NSFPanPanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/nsfplug_ui/NSFPanPanel.h -------------------------------------------------------------------------------- /nsfplug_ui/NSFPresetDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/nsfplug_ui/NSFPresetDialog.cpp -------------------------------------------------------------------------------- /nsfplug_ui/NSFPresetDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/nsfplug_ui/NSFPresetDialog.h -------------------------------------------------------------------------------- /nsfplug_ui/NSFTrackDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/nsfplug_ui/NSFTrackDialog.cpp -------------------------------------------------------------------------------- /nsfplug_ui/NSFTrackDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/nsfplug_ui/NSFTrackDialog.h -------------------------------------------------------------------------------- /nsfplug_ui/NSFTrackSetupDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/nsfplug_ui/NSFTrackSetupDialog.cpp -------------------------------------------------------------------------------- /nsfplug_ui/NSFTrackSetupDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/nsfplug_ui/NSFTrackSetupDialog.h -------------------------------------------------------------------------------- /nsfplug_ui/NSFVRC6Panel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/nsfplug_ui/NSFVRC6Panel.cpp -------------------------------------------------------------------------------- /nsfplug_ui/NSFVRC6Panel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/nsfplug_ui/NSFVRC6Panel.h -------------------------------------------------------------------------------- /nsfplug_ui/NSFVRC7Panel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/nsfplug_ui/NSFVRC7Panel.cpp -------------------------------------------------------------------------------- /nsfplug_ui/NSFVRC7Panel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/nsfplug_ui/NSFVRC7Panel.h -------------------------------------------------------------------------------- /nsfplug_ui/PresetManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/nsfplug_ui/PresetManager.cpp -------------------------------------------------------------------------------- /nsfplug_ui/PresetManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/nsfplug_ui/PresetManager.h -------------------------------------------------------------------------------- /nsfplug_ui/hlp/intro.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/nsfplug_ui/hlp/intro.htm -------------------------------------------------------------------------------- /nsfplug_ui/hlp/nsfplug.chw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/nsfplug_ui/hlp/nsfplug.chw -------------------------------------------------------------------------------- /nsfplug_ui/hlp/nsfplug.hhc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/nsfplug_ui/hlp/nsfplug.hhc -------------------------------------------------------------------------------- /nsfplug_ui/hlp/nsfplug.hhp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/nsfplug_ui/hlp/nsfplug.hhp -------------------------------------------------------------------------------- /nsfplug_ui/ico00001.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/nsfplug_ui/ico00001.ico -------------------------------------------------------------------------------- /nsfplug_ui/icon1.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/nsfplug_ui/icon1.ico -------------------------------------------------------------------------------- /nsfplug_ui/icon2.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/nsfplug_ui/icon2.ico -------------------------------------------------------------------------------- /nsfplug_ui/nsf_setup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/nsfplug_ui/nsf_setup.cpp -------------------------------------------------------------------------------- /nsfplug_ui/nsf_setup.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/nsfplug_ui/nsf_setup.def -------------------------------------------------------------------------------- /nsfplug_ui/nsf_setup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/nsfplug_ui/nsf_setup.h -------------------------------------------------------------------------------- /nsfplug_ui/nsf_setup.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/nsfplug_ui/nsf_setup.rc -------------------------------------------------------------------------------- /nsfplug_ui/nsfplug.hhk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/nsfplug_ui/nsfplug.hhk -------------------------------------------------------------------------------- /nsfplug_ui/nsfplug.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/nsfplug_ui/nsfplug.ico -------------------------------------------------------------------------------- /nsfplug_ui/nsfplug_ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/nsfplug_ui/nsfplug_ui.h -------------------------------------------------------------------------------- /nsfplug_ui/nsfplug_ui.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/nsfplug_ui/nsfplug_ui.vcproj -------------------------------------------------------------------------------- /nsfplug_ui/nsfplug_ui.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/nsfplug_ui/nsfplug_ui.vcxproj -------------------------------------------------------------------------------- /nsfplug_ui/res/ascii.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/nsfplug_ui/res/ascii.bmp -------------------------------------------------------------------------------- /nsfplug_ui/res/bitmap1.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/nsfplug_ui/res/bitmap1.bmp -------------------------------------------------------------------------------- /nsfplug_ui/res/digit.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/nsfplug_ui/res/digit.bmp -------------------------------------------------------------------------------- /nsfplug_ui/res/keyboard.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/nsfplug_ui/res/keyboard.bmp -------------------------------------------------------------------------------- /nsfplug_ui/res/keyheader.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/nsfplug_ui/res/keyheader.bmp -------------------------------------------------------------------------------- /nsfplug_ui/res/logo.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/nsfplug_ui/res/logo.bmp -------------------------------------------------------------------------------- /nsfplug_ui/res/noise_lamp.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/nsfplug_ui/res/noise_lamp.bmp -------------------------------------------------------------------------------- /nsfplug_ui/res/nsf.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/nsfplug_ui/res/nsf.ico -------------------------------------------------------------------------------- /nsfplug_ui/res/nsf_setup.rc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/nsfplug_ui/res/nsf_setup.rc2 -------------------------------------------------------------------------------- /nsfplug_ui/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/nsfplug_ui/resource.h -------------------------------------------------------------------------------- /nsfplug_ui/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/nsfplug_ui/stdafx.cpp -------------------------------------------------------------------------------- /nsfplug_ui/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/nsfplug_ui/stdafx.h -------------------------------------------------------------------------------- /nsfplug_ui/tempfile.tmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/nsfplug_ui/tempfile.tmp -------------------------------------------------------------------------------- /push_winamp.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/push_winamp.bat -------------------------------------------------------------------------------- /readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/readme.txt -------------------------------------------------------------------------------- /test/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/test/main.cpp -------------------------------------------------------------------------------- /test/test.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/test/test.vcproj -------------------------------------------------------------------------------- /test/test.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/test/test.vcxproj -------------------------------------------------------------------------------- /vcm/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/vcm/ReadMe.txt -------------------------------------------------------------------------------- /vcm/group.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/vcm/group.cpp -------------------------------------------------------------------------------- /vcm/ui/win32/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/vcm/ui/win32/ReadMe.txt -------------------------------------------------------------------------------- /vcm/ui/win32/res/win32.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/vcm/ui/win32/res/win32.ico -------------------------------------------------------------------------------- /vcm/ui/win32/res/win32.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/vcm/ui/win32/res/win32.manifest -------------------------------------------------------------------------------- /vcm/ui/win32/res/win32.rc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/vcm/ui/win32/res/win32.rc2 -------------------------------------------------------------------------------- /vcm/ui/win32/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/vcm/ui/win32/resource.h -------------------------------------------------------------------------------- /vcm/ui/win32/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/vcm/ui/win32/stdafx.cpp -------------------------------------------------------------------------------- /vcm/ui/win32/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/vcm/ui/win32/stdafx.h -------------------------------------------------------------------------------- /vcm/ui/win32/vcmCheck.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/vcm/ui/win32/vcmCheck.cpp -------------------------------------------------------------------------------- /vcm/ui/win32/vcmCheck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/vcm/ui/win32/vcmCheck.h -------------------------------------------------------------------------------- /vcm/ui/win32/vcmCombo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/vcm/ui/win32/vcmCombo.cpp -------------------------------------------------------------------------------- /vcm/ui/win32/vcmCombo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/vcm/ui/win32/vcmCombo.h -------------------------------------------------------------------------------- /vcm/ui/win32/vcmCtrl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/vcm/ui/win32/vcmCtrl.cpp -------------------------------------------------------------------------------- /vcm/ui/win32/vcmCtrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/vcm/ui/win32/vcmCtrl.h -------------------------------------------------------------------------------- /vcm/ui/win32/vcmDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/vcm/ui/win32/vcmDlg.cpp -------------------------------------------------------------------------------- /vcm/ui/win32/vcmDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/vcm/ui/win32/vcmDlg.h -------------------------------------------------------------------------------- /vcm/ui/win32/vcmSlider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/vcm/ui/win32/vcmSlider.cpp -------------------------------------------------------------------------------- /vcm/ui/win32/vcmSlider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/vcm/ui/win32/vcmSlider.h -------------------------------------------------------------------------------- /vcm/ui/win32/vcmSpin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/vcm/ui/win32/vcmSpin.cpp -------------------------------------------------------------------------------- /vcm/ui/win32/vcmSpin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/vcm/ui/win32/vcmSpin.h -------------------------------------------------------------------------------- /vcm/ui/win32/vcmText.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/vcm/ui/win32/vcmText.cpp -------------------------------------------------------------------------------- /vcm/ui/win32/vcmText.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/vcm/ui/win32/vcmText.h -------------------------------------------------------------------------------- /vcm/ui/win32/vcmTree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/vcm/ui/win32/vcmTree.cpp -------------------------------------------------------------------------------- /vcm/ui/win32/vcmTree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/vcm/ui/win32/vcmTree.h -------------------------------------------------------------------------------- /vcm/ui/win32/vcm_ui.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/vcm/ui/win32/vcm_ui.vcproj -------------------------------------------------------------------------------- /vcm/ui/win32/win32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/vcm/ui/win32/win32.cpp -------------------------------------------------------------------------------- /vcm/ui/win32/win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/vcm/ui/win32/win32.h -------------------------------------------------------------------------------- /vcm/ui/win32/win32.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/vcm/ui/win32/win32.rc -------------------------------------------------------------------------------- /vcm/value.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/vcm/value.cpp -------------------------------------------------------------------------------- /vcm/vcm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/vcm/vcm.h -------------------------------------------------------------------------------- /vcm/vcm.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/vcm/vcm.vcproj -------------------------------------------------------------------------------- /vcm/vcm.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/vcm/vcm.vcxproj -------------------------------------------------------------------------------- /vcm/vcm_ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/vcm/vcm_ui.h -------------------------------------------------------------------------------- /win/nsf_tag.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/win/nsf_tag.cpp -------------------------------------------------------------------------------- /win/nsf_tag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/win/nsf_tag.h -------------------------------------------------------------------------------- /win/nsfconfig_ini.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/win/nsfconfig_ini.cpp -------------------------------------------------------------------------------- /win/nsfconfig_ini.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/win/nsfconfig_ini.h -------------------------------------------------------------------------------- /win/plugin/kbmedia/plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/win/plugin/kbmedia/plugin.h -------------------------------------------------------------------------------- /win/plugin/kbmedia/sdk/kmp_pi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/win/plugin/kbmedia/sdk/kmp_pi.h -------------------------------------------------------------------------------- /win/plugin/winamp2/in_module.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/win/plugin/winamp2/in_module.cpp -------------------------------------------------------------------------------- /win/plugin/winamp2/in_module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/win/plugin/winamp2/in_module.h -------------------------------------------------------------------------------- /win/plugin/winamp2/in_module_msp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/win/plugin/winamp2/in_module_msp.cpp -------------------------------------------------------------------------------- /win/plugin/winamp2/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/win/plugin/winamp2/readme.txt -------------------------------------------------------------------------------- /win/plugin/winamp2/sdk/FRONTEND.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/win/plugin/winamp2/sdk/FRONTEND.H -------------------------------------------------------------------------------- /win/plugin/winamp2/sdk/IN2.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/win/plugin/winamp2/sdk/IN2.H -------------------------------------------------------------------------------- /win/plugin/winamp2/sdk/OUT.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/win/plugin/winamp2/sdk/OUT.H -------------------------------------------------------------------------------- /win/win.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/win/win.vcxproj -------------------------------------------------------------------------------- /xgm/Makefile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /xgm/browser/browser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/xgm/browser/browser.h -------------------------------------------------------------------------------- /xgm/debugout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/xgm/debugout.h -------------------------------------------------------------------------------- /xgm/devices/Audio/MedianFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/xgm/devices/Audio/MedianFilter.cpp -------------------------------------------------------------------------------- /xgm/devices/Audio/MedianFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/xgm/devices/Audio/MedianFilter.h -------------------------------------------------------------------------------- /xgm/devices/Audio/amplifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/xgm/devices/Audio/amplifier.h -------------------------------------------------------------------------------- /xgm/devices/Audio/echo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/xgm/devices/Audio/echo.cpp -------------------------------------------------------------------------------- /xgm/devices/Audio/echo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/xgm/devices/Audio/echo.h -------------------------------------------------------------------------------- /xgm/devices/Audio/fader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/xgm/devices/Audio/fader.h -------------------------------------------------------------------------------- /xgm/devices/Audio/filter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/xgm/devices/Audio/filter.cpp -------------------------------------------------------------------------------- /xgm/devices/Audio/filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/xgm/devices/Audio/filter.h -------------------------------------------------------------------------------- /xgm/devices/Audio/mixer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/xgm/devices/Audio/mixer.h -------------------------------------------------------------------------------- /xgm/devices/Audio/rconv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/xgm/devices/Audio/rconv.cpp -------------------------------------------------------------------------------- /xgm/devices/Audio/rconv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/xgm/devices/Audio/rconv.h -------------------------------------------------------------------------------- /xgm/devices/CPU/km6502/km6280.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/xgm/devices/CPU/km6502/km6280.h -------------------------------------------------------------------------------- /xgm/devices/CPU/km6502/km6280m.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/xgm/devices/CPU/km6502/km6280m.h -------------------------------------------------------------------------------- /xgm/devices/CPU/km6502/km6502.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/xgm/devices/CPU/km6502/km6502.h -------------------------------------------------------------------------------- /xgm/devices/CPU/km6502/km6502.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/xgm/devices/CPU/km6502/km6502.txt -------------------------------------------------------------------------------- /xgm/devices/CPU/km6502/km6502cd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/xgm/devices/CPU/km6502/km6502cd.h -------------------------------------------------------------------------------- /xgm/devices/CPU/km6502/km6502ct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/xgm/devices/CPU/km6502/km6502ct.h -------------------------------------------------------------------------------- /xgm/devices/CPU/km6502/km6502ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/xgm/devices/CPU/km6502/km6502ex.h -------------------------------------------------------------------------------- /xgm/devices/CPU/km6502/km6502ft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/xgm/devices/CPU/km6502/km6502ft.h -------------------------------------------------------------------------------- /xgm/devices/CPU/km6502/km6502m.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/xgm/devices/CPU/km6502/km6502m.h -------------------------------------------------------------------------------- /xgm/devices/CPU/km6502/km6502ot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/xgm/devices/CPU/km6502/km6502ot.h -------------------------------------------------------------------------------- /xgm/devices/CPU/km6502/km65c02.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/xgm/devices/CPU/km6502/km65c02.h -------------------------------------------------------------------------------- /xgm/devices/CPU/km6502/km65c02m.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/xgm/devices/CPU/km6502/km65c02m.h -------------------------------------------------------------------------------- /xgm/devices/CPU/km6502/kmconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/xgm/devices/CPU/km6502/kmconfig.h -------------------------------------------------------------------------------- /xgm/devices/CPU/nes_cpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/xgm/devices/CPU/nes_cpu.cpp -------------------------------------------------------------------------------- /xgm/devices/CPU/nes_cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/xgm/devices/CPU/nes_cpu.h -------------------------------------------------------------------------------- /xgm/devices/Memory/nes_bank.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/xgm/devices/Memory/nes_bank.cpp -------------------------------------------------------------------------------- /xgm/devices/Memory/nes_bank.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/xgm/devices/Memory/nes_bank.h -------------------------------------------------------------------------------- /xgm/devices/Memory/nes_mem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/xgm/devices/Memory/nes_mem.cpp -------------------------------------------------------------------------------- /xgm/devices/Memory/nes_mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/xgm/devices/Memory/nes_mem.h -------------------------------------------------------------------------------- /xgm/devices/Memory/nsf2_vectors.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/xgm/devices/Memory/nsf2_vectors.cpp -------------------------------------------------------------------------------- /xgm/devices/Memory/nsf2_vectors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/xgm/devices/Memory/nsf2_vectors.h -------------------------------------------------------------------------------- /xgm/devices/Memory/ram64k.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/xgm/devices/Memory/ram64k.cpp -------------------------------------------------------------------------------- /xgm/devices/Memory/ram64k.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/xgm/devices/Memory/ram64k.h -------------------------------------------------------------------------------- /xgm/devices/Misc/block.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/xgm/devices/Misc/block.h -------------------------------------------------------------------------------- /xgm/devices/Misc/detect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/xgm/devices/Misc/detect.cpp -------------------------------------------------------------------------------- /xgm/devices/Misc/detect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/xgm/devices/Misc/detect.h -------------------------------------------------------------------------------- /xgm/devices/Misc/log_cpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/xgm/devices/Misc/log_cpu.cpp -------------------------------------------------------------------------------- /xgm/devices/Misc/log_cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/xgm/devices/Misc/log_cpu.h -------------------------------------------------------------------------------- /xgm/devices/Misc/nes_detect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/xgm/devices/Misc/nes_detect.cpp -------------------------------------------------------------------------------- /xgm/devices/Misc/nes_detect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/xgm/devices/Misc/nes_detect.h -------------------------------------------------------------------------------- /xgm/devices/Misc/nsf2_irq.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/xgm/devices/Misc/nsf2_irq.cpp -------------------------------------------------------------------------------- /xgm/devices/Misc/nsf2_irq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/xgm/devices/Misc/nsf2_irq.h -------------------------------------------------------------------------------- /xgm/devices/Sound/legacy/2413tone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/xgm/devices/Sound/legacy/2413tone.h -------------------------------------------------------------------------------- /xgm/devices/Sound/legacy/281btone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/xgm/devices/Sound/legacy/281btone.h -------------------------------------------------------------------------------- /xgm/devices/Sound/legacy/281btone_plgdavid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/xgm/devices/Sound/legacy/281btone_plgdavid.h -------------------------------------------------------------------------------- /xgm/devices/Sound/legacy/emu2149.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/xgm/devices/Sound/legacy/emu2149.c -------------------------------------------------------------------------------- /xgm/devices/Sound/legacy/emu2149.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/xgm/devices/Sound/legacy/emu2149.h -------------------------------------------------------------------------------- /xgm/devices/Sound/legacy/emu2212.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/xgm/devices/Sound/legacy/emu2212.c -------------------------------------------------------------------------------- /xgm/devices/Sound/legacy/emu2212.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/xgm/devices/Sound/legacy/emu2212.h -------------------------------------------------------------------------------- /xgm/devices/Sound/legacy/emu2413.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/xgm/devices/Sound/legacy/emu2413.c -------------------------------------------------------------------------------- /xgm/devices/Sound/legacy/emu2413.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/xgm/devices/Sound/legacy/emu2413.h -------------------------------------------------------------------------------- /xgm/devices/Sound/legacy/emutypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/xgm/devices/Sound/legacy/emutypes.h -------------------------------------------------------------------------------- /xgm/devices/Sound/legacy/vrc7tone_ft35.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/xgm/devices/Sound/legacy/vrc7tone_ft35.h -------------------------------------------------------------------------------- /xgm/devices/Sound/legacy/vrc7tone_ft36.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/xgm/devices/Sound/legacy/vrc7tone_ft36.h -------------------------------------------------------------------------------- /xgm/devices/Sound/legacy/vrc7tone_kt1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/xgm/devices/Sound/legacy/vrc7tone_kt1.h -------------------------------------------------------------------------------- /xgm/devices/Sound/legacy/vrc7tone_kt2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/xgm/devices/Sound/legacy/vrc7tone_kt2.h -------------------------------------------------------------------------------- /xgm/devices/Sound/legacy/vrc7tone_mo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/xgm/devices/Sound/legacy/vrc7tone_mo.h -------------------------------------------------------------------------------- /xgm/devices/Sound/legacy/vrc7tone_nuke.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/xgm/devices/Sound/legacy/vrc7tone_nuke.h -------------------------------------------------------------------------------- /xgm/devices/Sound/legacy/vrc7tone_rw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/xgm/devices/Sound/legacy/vrc7tone_rw.h -------------------------------------------------------------------------------- /xgm/devices/Sound/nes_apu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/xgm/devices/Sound/nes_apu.cpp -------------------------------------------------------------------------------- /xgm/devices/Sound/nes_apu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/xgm/devices/Sound/nes_apu.h -------------------------------------------------------------------------------- /xgm/devices/Sound/nes_dmc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/xgm/devices/Sound/nes_dmc.cpp -------------------------------------------------------------------------------- /xgm/devices/Sound/nes_dmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/xgm/devices/Sound/nes_dmc.h -------------------------------------------------------------------------------- /xgm/devices/Sound/nes_fds.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/xgm/devices/Sound/nes_fds.cpp -------------------------------------------------------------------------------- /xgm/devices/Sound/nes_fds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/xgm/devices/Sound/nes_fds.h -------------------------------------------------------------------------------- /xgm/devices/Sound/nes_fme7.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/xgm/devices/Sound/nes_fme7.cpp -------------------------------------------------------------------------------- /xgm/devices/Sound/nes_fme7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/xgm/devices/Sound/nes_fme7.h -------------------------------------------------------------------------------- /xgm/devices/Sound/nes_mmc5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/xgm/devices/Sound/nes_mmc5.cpp -------------------------------------------------------------------------------- /xgm/devices/Sound/nes_mmc5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/xgm/devices/Sound/nes_mmc5.h -------------------------------------------------------------------------------- /xgm/devices/Sound/nes_n106.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/xgm/devices/Sound/nes_n106.cpp -------------------------------------------------------------------------------- /xgm/devices/Sound/nes_n106.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/xgm/devices/Sound/nes_n106.h -------------------------------------------------------------------------------- /xgm/devices/Sound/nes_vrc6.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/xgm/devices/Sound/nes_vrc6.cpp -------------------------------------------------------------------------------- /xgm/devices/Sound/nes_vrc6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/xgm/devices/Sound/nes_vrc6.h -------------------------------------------------------------------------------- /xgm/devices/Sound/nes_vrc7.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/xgm/devices/Sound/nes_vrc7.cpp -------------------------------------------------------------------------------- /xgm/devices/Sound/nes_vrc7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/xgm/devices/Sound/nes_vrc7.h -------------------------------------------------------------------------------- /xgm/devices/all.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/xgm/devices/all.h -------------------------------------------------------------------------------- /xgm/devices/device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/xgm/devices/device.h -------------------------------------------------------------------------------- /xgm/devices/devinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/xgm/devices/devinfo.h -------------------------------------------------------------------------------- /xgm/fileutil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/xgm/fileutil.cpp -------------------------------------------------------------------------------- /xgm/fileutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/xgm/fileutil.h -------------------------------------------------------------------------------- /xgm/player/all.h: -------------------------------------------------------------------------------- 1 | #include "nsf/nsfplay.h" -------------------------------------------------------------------------------- /xgm/player/midi_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/xgm/player/midi_interface.h -------------------------------------------------------------------------------- /xgm/player/nsf/nsf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/xgm/player/nsf/nsf.cpp -------------------------------------------------------------------------------- /xgm/player/nsf/nsf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/xgm/player/nsf/nsf.h -------------------------------------------------------------------------------- /xgm/player/nsf/nsfconfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/xgm/player/nsf/nsfconfig.cpp -------------------------------------------------------------------------------- /xgm/player/nsf/nsfconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/xgm/player/nsf/nsfconfig.h -------------------------------------------------------------------------------- /xgm/player/nsf/nsfplay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/xgm/player/nsf/nsfplay.cpp -------------------------------------------------------------------------------- /xgm/player/nsf/nsfplay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/xgm/player/nsf/nsfplay.h -------------------------------------------------------------------------------- /xgm/player/nsf/pls/ppls.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/xgm/player/nsf/pls/ppls.cpp -------------------------------------------------------------------------------- /xgm/player/nsf/pls/ppls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/xgm/player/nsf/pls/ppls.h -------------------------------------------------------------------------------- /xgm/player/nsf/pls/sstream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/xgm/player/nsf/pls/sstream.cpp -------------------------------------------------------------------------------- /xgm/player/nsf/pls/sstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/xgm/player/nsf/pls/sstream.h -------------------------------------------------------------------------------- /xgm/player/player.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/xgm/player/player.h -------------------------------------------------------------------------------- /xgm/player/soundData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/xgm/player/soundData.h -------------------------------------------------------------------------------- /xgm/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/xgm/readme.txt -------------------------------------------------------------------------------- /xgm/readme_ja.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/xgm/readme_ja.txt -------------------------------------------------------------------------------- /xgm/utils/tagctrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/xgm/utils/tagctrl.h -------------------------------------------------------------------------------- /xgm/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/xgm/version.h -------------------------------------------------------------------------------- /xgm/xgm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/xgm/xgm.h -------------------------------------------------------------------------------- /xgm/xgm.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/xgm/xgm.vcproj -------------------------------------------------------------------------------- /xgm/xgm.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/xgm/xgm.vcxproj -------------------------------------------------------------------------------- /xgm/xtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbradsmith/nsfplay/HEAD/xgm/xtypes.h --------------------------------------------------------------------------------