├── xgm ├── Makefile ├── xtypes.h ├── readme_ja.txt ├── player │ ├── player.h │ ├── nsf │ │ ├── nsf.h │ │ ├── nsfplay.h │ │ ├── nsfconfig.h │ │ ├── nsfplay.cpp │ │ └── pls │ │ │ ├── sstream.h │ │ │ ├── ppls.h │ │ │ └── sstream.cpp │ ├── soundData.h │ ├── midi_interface.h │ ├── plugin │ │ ├── kbmedia │ │ │ ├── plugin.h │ │ │ └── sdk │ │ │ │ └── kmp_pi.h │ │ └── winamp2 │ │ │ ├── in_module.h │ │ │ ├── readme.txt │ │ │ ├── in_module.cpp │ │ │ ├── in_module_msp.cpp │ │ │ └── sdk │ │ │ └── OUT.H │ └── all.h ├── utils │ ├── nsf_tag.h │ ├── nsf_tag.cpp │ └── tagctrl.h ├── devices │ ├── device.h │ ├── devinfo.h │ ├── Misc │ │ ├── block.h │ │ ├── detect.cpp │ │ ├── detect.h │ │ ├── nsf2_irq.h │ │ ├── log_cpu.h │ │ ├── nes_detect.h │ │ ├── nsf2_irq.cpp │ │ └── nes_detect.cpp │ ├── Audio │ │ ├── filter.h │ │ ├── rconv.cpp │ │ ├── rconv.h │ │ ├── filter.cpp │ │ ├── MedianFilter.h │ │ ├── echo.h │ │ ├── MedianFilter.cpp │ │ ├── echo.cpp │ │ ├── amplifier.h │ │ ├── fader.h │ │ └── mixer.h │ ├── CPU │ │ ├── nes_cpu.cpp │ │ ├── km6502 │ │ │ ├── km6502.txt │ │ │ ├── km65c02.h │ │ │ ├── km6502.h │ │ │ ├── km6280.h │ │ │ ├── km6502m.h │ │ │ ├── km65c02m.h │ │ │ ├── km6502ft.h │ │ │ ├── kmconfig.h │ │ │ ├── km6280m.h │ │ │ └── km6502ex.h │ │ └── nes_cpu.h │ ├── Sound │ │ ├── nes_apu.h │ │ ├── nes_apu.cpp │ │ ├── nes_dmc.cpp │ │ ├── nes_mmc5.h │ │ ├── legacy │ │ │ ├── emutypes.h │ │ │ ├── 281btone.h │ │ │ ├── 2413tone.h │ │ │ ├── vrc7tone_kt2.h │ │ │ ├── vrc7tone_mo.h │ │ │ ├── vrc7tone_kt1.h │ │ │ ├── vrc7tone_rw.h │ │ │ ├── vrc7tone_ft36.h │ │ │ ├── vrc7tone_ft35.h │ │ │ ├── emu2212.h │ │ │ └── emu2149.h │ │ ├── nes_fme7.h │ │ ├── nes_vrc7.h │ │ ├── nes_vrc6.h │ │ ├── nes_n106.h │ │ ├── nes_fds.h │ │ ├── nes_vrc7.cpp │ │ └── nes_dmc.h │ ├── Memory │ │ ├── nes_bank.h │ │ ├── nes_bank.cpp │ │ ├── nes_mem.cpp │ │ ├── ram64k.h │ │ ├── nsf2_vectors.h │ │ ├── nes_mem.h │ │ ├── nsf2_vectors.cpp │ │ └── ram64k.cpp │ └── all.h ├── xgm.h ├── version.h ├── browser │ └── browser.h ├── debugout.h └── readme.txt ├── nsfplug_ui ├── NSFDialogModel.h ├── NSFDialogModel.cpp ├── stdafx.h ├── KeyDialog.h ├── KeyHeader.h ├── KeyWindow.h ├── icon1.ico ├── icon2.ico ├── nsf_setup.h ├── nsfplug.ico ├── res │ ├── nsf.ico │ ├── ascii.bmp │ ├── digit.bmp │ ├── logo.bmp │ ├── bitmap1.bmp │ ├── keyboard.bmp │ ├── keyheader.bmp │ ├── noise_lamp.bmp │ └── nsf_setup.rc2 ├── stdafx.cpp ├── KeyDialog.cpp ├── KeyHeader.cpp ├── KeyWindow.cpp ├── NSFApuPanel.h ├── NSFDialogs.h ├── NSFDmcPanel.h ├── NSFFdsPanel.h ├── ico00001.ico ├── nsf_setup.cpp ├── nsf_setup.def ├── nsf_setup.rc ├── nsfplug_ui.h ├── tempfile.tmp ├── NSFApuPanel.cpp ├── NSFAudioPanel.h ├── NSFDialogs.cpp ├── NSFDmcPanel.cpp ├── NSFEasyDialog.h ├── NSFFdsPanel.cpp ├── NSFInfoDialog.h ├── NSFMaskDialog.h ├── NSFMixerDialog.h ├── NSFMixerPanel.h ├── NSFTrackDialog.h ├── hlp │ ├── nsfplug.chw │ ├── nsfplug.hhc │ ├── nsfplug.hhp │ └── intro.htm ├── NSFAudioPanel.cpp ├── NSFConfigDialog.h ├── NSFEasyDialog.cpp ├── NSFInfoDialog.cpp ├── NSFMaskDialog.cpp ├── NSFMemoryDialog.h ├── NSFMixerDialog.cpp ├── NSFMixerPanel.cpp ├── NSFPresetDialog.h ├── NSFTrackDialog.cpp ├── nsfplug_ui.vcproj ├── NSFConfigDialog.cpp ├── NSFConfigPageDevice.h ├── NSFConfigPageMain.cpp ├── NSFConfigPageMain.h ├── NSFMemoryDialog.cpp ├── NSFPresetDialog.cpp ├── NSFTrackSetupDialog.h ├── NSFConfigPageDevice.cpp ├── NSFMemoryWriteDialog.h ├── NSFTrackSetupDialog.cpp ├── NSFMemoryWriteDialog.cpp ├── nsfplug.hhk ├── NSFDialog.cpp ├── NSFDialog.h ├── PresetManager.h ├── NSFN106Panel.h ├── NSFMMC5Panel.h ├── NSFPanPanel.h ├── NSFPanDialog.h ├── NSFN106Panel.cpp ├── NSFMMC5Panel.cpp ├── NSFPanPanel.cpp ├── PresetManager.cpp └── NSFPanDialog.cpp ├── libemuwa2 ├── winamp2 │ ├── WINAMP_SDK_IS_REQUIRED.TXT │ ├── GEN.H │ ├── wa_hotkeys.h │ ├── ipc_pe.h │ ├── OUT.H │ └── DSP.H ├── libemuwa2.vcproj ├── emu_outdisk.h ├── emu_winamp.h └── emu_outmod.h ├── distribute ├── nsfplay.ini ├── push_winamp.bat └── distribute.bat ├── kbnsf ├── in_nsf.def ├── in_nsf.h ├── kbnsf.rc ├── in_nsf.cpp ├── in_nsf_k.txt ├── kmp_hack.cpp └── resource.h ├── vcm ├── vcm.h ├── vcm_ui.h ├── ReadMe.txt ├── vcm.vcproj ├── ui │ └── win32 │ │ ├── stdafx.h │ │ ├── vcmCtrl.h │ │ ├── vcmDlg.h │ │ ├── vcmSpin.h │ │ ├── vcmText.h │ │ ├── vcmTree.h │ │ ├── win32.cpp │ │ ├── win32.h │ │ ├── win32.rc │ │ ├── ReadMe.txt │ │ ├── stdafx.cpp │ │ ├── vcmCheck.h │ │ ├── vcmCombo.h │ │ ├── vcmCtrl.cpp │ │ ├── vcmDlg.cpp │ │ ├── vcmSlider.h │ │ ├── vcmSpin.cpp │ │ ├── vcmText.cpp │ │ ├── vcmTree.cpp │ │ ├── res │ │ ├── win32.ico │ │ ├── win32.rc2 │ │ └── win32.manifest │ │ ├── vcmCheck.cpp │ │ ├── vcmCombo.cpp │ │ ├── vcmSlider.cpp │ │ ├── vcm_ui.vcproj │ │ └── resource.h ├── group.cpp └── value.cpp ├── nsfplay ├── stdafx.cpp ├── nsfplay.vcproj ├── res │ ├── about.ico │ ├── config.ico │ ├── next.ico │ ├── open.ico │ ├── pause.ico │ ├── play.ico │ ├── prev.ico │ ├── prop.ico │ ├── stop.ico │ ├── volume.bmp │ ├── volume.ico │ ├── nsfplay.ico │ ├── nsfplay.rc2 │ ├── nsfplug.ico │ ├── waveout.ico │ └── nsfplay.manifest ├── stdafx.h ├── nsfplay.h ├── resource.h └── nsfplayDlg.h ├── in_yansf ├── in_nsf.h ├── in_nsf.cpp └── in_nsf_w.txt ├── nsfmwin ├── nsfmwin.h ├── stdafx.h ├── OptionDlg.h ├── nsfmwin.cpp ├── nsfmwin.rc ├── stdafx.cpp ├── OptionDlg.cpp ├── hlp │ ├── INTRO.htm │ ├── TAG2PLS.htm │ ├── nsfmwin.chm │ ├── nsfmwin.hhc │ ├── nsfmwin.hhp │ ├── COPYRIGHT.htm │ ├── HIDD_OPTION.htm │ ├── HTMLDefines.h │ ├── IDD_OPTION.png │ ├── HIDD_ROOT_DIALOG.htm │ ├── IDD_NSFMWIN_DIALOG.png │ └── nsfmwin.hhk ├── nsfmwin.vcproj ├── nsfmwinDlg.cpp ├── nsfmwinDlg.h ├── res │ ├── nsfmwin.ico │ ├── nsfmwin.rc2 │ └── nsfmwin.manifest ├── nsfmeasure.h ├── nsfmeasure.cpp ├── resource.h └── nsfmwin.sln ├── test ├── test.vcproj └── main.cpp ├── tag2pls ├── tag2pls.vcproj ├── tag2pls.txt └── main.cpp ├── setup.bat ├── .gitignore ├── cpp17.props ├── readme.txt └── docs └── index.html /xgm/Makefile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nsfplug_ui/NSFDialogModel.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nsfplug_ui/NSFDialogModel.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libemuwa2/winamp2/WINAMP_SDK_IS_REQUIRED.TXT: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /distribute/nsfplay.ini: -------------------------------------------------------------------------------- 1 | [NSFPLAY] 2 | VOLUME=255 3 | -------------------------------------------------------------------------------- /kbnsf/in_nsf.def: -------------------------------------------------------------------------------- 1 | EXPORTS 2 | kmp_GetTestModule 3 | -------------------------------------------------------------------------------- /vcm/vcm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/nsfplay/HEAD/vcm/vcm.h -------------------------------------------------------------------------------- /nsfplay/stdafx.cpp: -------------------------------------------------------------------------------- 1 | struct IUnknown; 2 | #include "stdafx.h" 3 | 4 | 5 | -------------------------------------------------------------------------------- /vcm/vcm_ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/nsfplay/HEAD/vcm/vcm_ui.h -------------------------------------------------------------------------------- /xgm/xtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/nsfplay/HEAD/xgm/xtypes.h -------------------------------------------------------------------------------- /kbnsf/in_nsf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/nsfplay/HEAD/kbnsf/in_nsf.h -------------------------------------------------------------------------------- /kbnsf/kbnsf.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/nsfplay/HEAD/kbnsf/kbnsf.rc -------------------------------------------------------------------------------- /vcm/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/nsfplay/HEAD/vcm/ReadMe.txt -------------------------------------------------------------------------------- /vcm/vcm.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/nsfplay/HEAD/vcm/vcm.vcproj -------------------------------------------------------------------------------- /in_yansf/in_nsf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/nsfplay/HEAD/in_yansf/in_nsf.h -------------------------------------------------------------------------------- /kbnsf/in_nsf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/nsfplay/HEAD/kbnsf/in_nsf.cpp -------------------------------------------------------------------------------- /nsfmwin/nsfmwin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/nsfplay/HEAD/nsfmwin/nsfmwin.h -------------------------------------------------------------------------------- /nsfmwin/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/nsfplay/HEAD/nsfmwin/stdafx.h -------------------------------------------------------------------------------- /test/test.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/nsfplay/HEAD/test/test.vcproj -------------------------------------------------------------------------------- /xgm/readme_ja.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/nsfplay/HEAD/xgm/readme_ja.txt -------------------------------------------------------------------------------- /in_yansf/in_nsf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/nsfplay/HEAD/in_yansf/in_nsf.cpp -------------------------------------------------------------------------------- /kbnsf/in_nsf_k.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/nsfplay/HEAD/kbnsf/in_nsf_k.txt -------------------------------------------------------------------------------- /kbnsf/kmp_hack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/nsfplay/HEAD/kbnsf/kmp_hack.cpp -------------------------------------------------------------------------------- /nsfmwin/OptionDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/nsfplay/HEAD/nsfmwin/OptionDlg.h -------------------------------------------------------------------------------- /nsfmwin/nsfmwin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/nsfplay/HEAD/nsfmwin/nsfmwin.cpp -------------------------------------------------------------------------------- /nsfmwin/nsfmwin.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/nsfplay/HEAD/nsfmwin/nsfmwin.rc -------------------------------------------------------------------------------- /nsfmwin/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/nsfplay/HEAD/nsfmwin/stdafx.cpp -------------------------------------------------------------------------------- /nsfplug_ui/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/nsfplay/HEAD/nsfplug_ui/stdafx.h -------------------------------------------------------------------------------- /xgm/player/player.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/nsfplay/HEAD/xgm/player/player.h -------------------------------------------------------------------------------- /xgm/utils/nsf_tag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/nsfplay/HEAD/xgm/utils/nsf_tag.h -------------------------------------------------------------------------------- /in_yansf/in_nsf_w.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/nsfplay/HEAD/in_yansf/in_nsf_w.txt -------------------------------------------------------------------------------- /nsfmwin/OptionDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/nsfplay/HEAD/nsfmwin/OptionDlg.cpp -------------------------------------------------------------------------------- /nsfmwin/hlp/INTRO.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/nsfplay/HEAD/nsfmwin/hlp/INTRO.htm -------------------------------------------------------------------------------- /nsfmwin/nsfmwin.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/nsfplay/HEAD/nsfmwin/nsfmwin.vcproj -------------------------------------------------------------------------------- /nsfmwin/nsfmwinDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/nsfplay/HEAD/nsfmwin/nsfmwinDlg.cpp -------------------------------------------------------------------------------- /nsfmwin/nsfmwinDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/nsfplay/HEAD/nsfmwin/nsfmwinDlg.h -------------------------------------------------------------------------------- /nsfplay/nsfplay.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/nsfplay/HEAD/nsfplay/nsfplay.vcproj -------------------------------------------------------------------------------- /nsfplay/res/about.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/nsfplay/HEAD/nsfplay/res/about.ico -------------------------------------------------------------------------------- /nsfplay/res/config.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/nsfplay/HEAD/nsfplay/res/config.ico -------------------------------------------------------------------------------- /nsfplay/res/next.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/nsfplay/HEAD/nsfplay/res/next.ico -------------------------------------------------------------------------------- /nsfplay/res/open.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/nsfplay/HEAD/nsfplay/res/open.ico -------------------------------------------------------------------------------- /nsfplay/res/pause.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/nsfplay/HEAD/nsfplay/res/pause.ico -------------------------------------------------------------------------------- /nsfplay/res/play.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/nsfplay/HEAD/nsfplay/res/play.ico -------------------------------------------------------------------------------- /nsfplay/res/prev.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/nsfplay/HEAD/nsfplay/res/prev.ico -------------------------------------------------------------------------------- /nsfplay/res/prop.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/nsfplay/HEAD/nsfplay/res/prop.ico -------------------------------------------------------------------------------- /nsfplay/res/stop.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/nsfplay/HEAD/nsfplay/res/stop.ico -------------------------------------------------------------------------------- /nsfplay/res/volume.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/nsfplay/HEAD/nsfplay/res/volume.bmp -------------------------------------------------------------------------------- /nsfplay/res/volume.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/nsfplay/HEAD/nsfplay/res/volume.ico -------------------------------------------------------------------------------- /nsfplug_ui/KeyDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/nsfplay/HEAD/nsfplug_ui/KeyDialog.h -------------------------------------------------------------------------------- /nsfplug_ui/KeyHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/nsfplay/HEAD/nsfplug_ui/KeyHeader.h -------------------------------------------------------------------------------- /nsfplug_ui/KeyWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/nsfplay/HEAD/nsfplug_ui/KeyWindow.h -------------------------------------------------------------------------------- /nsfplug_ui/icon1.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/nsfplay/HEAD/nsfplug_ui/icon1.ico -------------------------------------------------------------------------------- /nsfplug_ui/icon2.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/nsfplay/HEAD/nsfplug_ui/icon2.ico -------------------------------------------------------------------------------- /nsfplug_ui/nsf_setup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/nsfplay/HEAD/nsfplug_ui/nsf_setup.h -------------------------------------------------------------------------------- /nsfplug_ui/nsfplug.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/nsfplay/HEAD/nsfplug_ui/nsfplug.ico -------------------------------------------------------------------------------- /nsfplug_ui/res/nsf.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/nsfplay/HEAD/nsfplug_ui/res/nsf.ico -------------------------------------------------------------------------------- /nsfplug_ui/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/nsfplay/HEAD/nsfplug_ui/stdafx.cpp -------------------------------------------------------------------------------- /tag2pls/tag2pls.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/nsfplay/HEAD/tag2pls/tag2pls.vcproj -------------------------------------------------------------------------------- /vcm/ui/win32/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/nsfplay/HEAD/vcm/ui/win32/stdafx.h -------------------------------------------------------------------------------- /vcm/ui/win32/vcmCtrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/nsfplay/HEAD/vcm/ui/win32/vcmCtrl.h -------------------------------------------------------------------------------- /vcm/ui/win32/vcmDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/nsfplay/HEAD/vcm/ui/win32/vcmDlg.h -------------------------------------------------------------------------------- /vcm/ui/win32/vcmSpin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/nsfplay/HEAD/vcm/ui/win32/vcmSpin.h -------------------------------------------------------------------------------- /vcm/ui/win32/vcmText.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/nsfplay/HEAD/vcm/ui/win32/vcmText.h -------------------------------------------------------------------------------- /vcm/ui/win32/vcmTree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/nsfplay/HEAD/vcm/ui/win32/vcmTree.h -------------------------------------------------------------------------------- /vcm/ui/win32/win32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/nsfplay/HEAD/vcm/ui/win32/win32.cpp -------------------------------------------------------------------------------- /vcm/ui/win32/win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/nsfplay/HEAD/vcm/ui/win32/win32.h -------------------------------------------------------------------------------- /vcm/ui/win32/win32.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/nsfplay/HEAD/vcm/ui/win32/win32.rc -------------------------------------------------------------------------------- /xgm/devices/device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/nsfplay/HEAD/xgm/devices/device.h -------------------------------------------------------------------------------- /xgm/devices/devinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/nsfplay/HEAD/xgm/devices/devinfo.h -------------------------------------------------------------------------------- /xgm/player/nsf/nsf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/nsfplay/HEAD/xgm/player/nsf/nsf.h -------------------------------------------------------------------------------- /xgm/player/soundData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/nsfplay/HEAD/xgm/player/soundData.h -------------------------------------------------------------------------------- /xgm/utils/nsf_tag.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/nsfplay/HEAD/xgm/utils/nsf_tag.cpp -------------------------------------------------------------------------------- /nsfmwin/hlp/TAG2PLS.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/nsfplay/HEAD/nsfmwin/hlp/TAG2PLS.htm -------------------------------------------------------------------------------- /nsfmwin/hlp/nsfmwin.chm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/nsfplay/HEAD/nsfmwin/hlp/nsfmwin.chm -------------------------------------------------------------------------------- /nsfmwin/hlp/nsfmwin.hhc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/nsfplay/HEAD/nsfmwin/hlp/nsfmwin.hhc -------------------------------------------------------------------------------- /nsfmwin/hlp/nsfmwin.hhp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/nsfplay/HEAD/nsfmwin/hlp/nsfmwin.hhp -------------------------------------------------------------------------------- /nsfmwin/res/nsfmwin.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/nsfplay/HEAD/nsfmwin/res/nsfmwin.ico -------------------------------------------------------------------------------- /nsfmwin/res/nsfmwin.rc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/nsfplay/HEAD/nsfmwin/res/nsfmwin.rc2 -------------------------------------------------------------------------------- /nsfplay/res/nsfplay.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/nsfplay/HEAD/nsfplay/res/nsfplay.ico -------------------------------------------------------------------------------- /nsfplay/res/nsfplay.rc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/nsfplay/HEAD/nsfplay/res/nsfplay.rc2 -------------------------------------------------------------------------------- /nsfplay/res/nsfplug.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/nsfplay/HEAD/nsfplay/res/nsfplug.ico -------------------------------------------------------------------------------- /nsfplay/res/waveout.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/nsfplay/HEAD/nsfplay/res/waveout.ico -------------------------------------------------------------------------------- /nsfplug_ui/KeyDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/nsfplay/HEAD/nsfplug_ui/KeyDialog.cpp -------------------------------------------------------------------------------- /nsfplug_ui/KeyHeader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/nsfplay/HEAD/nsfplug_ui/KeyHeader.cpp -------------------------------------------------------------------------------- /nsfplug_ui/KeyWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/nsfplay/HEAD/nsfplug_ui/KeyWindow.cpp -------------------------------------------------------------------------------- /nsfplug_ui/NSFApuPanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/nsfplay/HEAD/nsfplug_ui/NSFApuPanel.h -------------------------------------------------------------------------------- /nsfplug_ui/NSFDialogs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/nsfplay/HEAD/nsfplug_ui/NSFDialogs.h -------------------------------------------------------------------------------- /nsfplug_ui/NSFDmcPanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/nsfplay/HEAD/nsfplug_ui/NSFDmcPanel.h -------------------------------------------------------------------------------- /nsfplug_ui/NSFFdsPanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/nsfplay/HEAD/nsfplug_ui/NSFFdsPanel.h -------------------------------------------------------------------------------- /nsfplug_ui/ico00001.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/nsfplay/HEAD/nsfplug_ui/ico00001.ico -------------------------------------------------------------------------------- /nsfplug_ui/nsf_setup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/nsfplay/HEAD/nsfplug_ui/nsf_setup.cpp -------------------------------------------------------------------------------- /nsfplug_ui/nsf_setup.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/nsfplay/HEAD/nsfplug_ui/nsf_setup.def -------------------------------------------------------------------------------- /nsfplug_ui/nsf_setup.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/nsfplay/HEAD/nsfplug_ui/nsf_setup.rc -------------------------------------------------------------------------------- /nsfplug_ui/nsfplug_ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/nsfplay/HEAD/nsfplug_ui/nsfplug_ui.h -------------------------------------------------------------------------------- /nsfplug_ui/res/ascii.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/nsfplay/HEAD/nsfplug_ui/res/ascii.bmp -------------------------------------------------------------------------------- /nsfplug_ui/res/digit.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/nsfplay/HEAD/nsfplug_ui/res/digit.bmp -------------------------------------------------------------------------------- /nsfplug_ui/res/logo.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/nsfplay/HEAD/nsfplug_ui/res/logo.bmp -------------------------------------------------------------------------------- /nsfplug_ui/tempfile.tmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/nsfplay/HEAD/nsfplug_ui/tempfile.tmp -------------------------------------------------------------------------------- /vcm/ui/win32/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/nsfplay/HEAD/vcm/ui/win32/ReadMe.txt -------------------------------------------------------------------------------- /vcm/ui/win32/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/nsfplay/HEAD/vcm/ui/win32/stdafx.cpp -------------------------------------------------------------------------------- /vcm/ui/win32/vcmCheck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/nsfplay/HEAD/vcm/ui/win32/vcmCheck.h -------------------------------------------------------------------------------- /vcm/ui/win32/vcmCombo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/nsfplay/HEAD/vcm/ui/win32/vcmCombo.h -------------------------------------------------------------------------------- /vcm/ui/win32/vcmCtrl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/nsfplay/HEAD/vcm/ui/win32/vcmCtrl.cpp -------------------------------------------------------------------------------- /vcm/ui/win32/vcmDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/nsfplay/HEAD/vcm/ui/win32/vcmDlg.cpp -------------------------------------------------------------------------------- /vcm/ui/win32/vcmSlider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/nsfplay/HEAD/vcm/ui/win32/vcmSlider.h -------------------------------------------------------------------------------- /vcm/ui/win32/vcmSpin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/nsfplay/HEAD/vcm/ui/win32/vcmSpin.cpp -------------------------------------------------------------------------------- /vcm/ui/win32/vcmText.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/nsfplay/HEAD/vcm/ui/win32/vcmText.cpp -------------------------------------------------------------------------------- /vcm/ui/win32/vcmTree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/nsfplay/HEAD/vcm/ui/win32/vcmTree.cpp -------------------------------------------------------------------------------- /xgm/devices/Misc/block.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/nsfplay/HEAD/xgm/devices/Misc/block.h -------------------------------------------------------------------------------- /xgm/player/nsf/nsfplay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/nsfplay/HEAD/xgm/player/nsf/nsfplay.h -------------------------------------------------------------------------------- /libemuwa2/libemuwa2.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/nsfplay/HEAD/libemuwa2/libemuwa2.vcproj -------------------------------------------------------------------------------- /nsfmwin/hlp/COPYRIGHT.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/nsfplay/HEAD/nsfmwin/hlp/COPYRIGHT.htm -------------------------------------------------------------------------------- /nsfmwin/hlp/HIDD_OPTION.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/nsfplay/HEAD/nsfmwin/hlp/HIDD_OPTION.htm -------------------------------------------------------------------------------- /nsfmwin/hlp/HTMLDefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/nsfplay/HEAD/nsfmwin/hlp/HTMLDefines.h -------------------------------------------------------------------------------- /nsfmwin/hlp/IDD_OPTION.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/nsfplay/HEAD/nsfmwin/hlp/IDD_OPTION.png -------------------------------------------------------------------------------- /nsfplug_ui/NSFApuPanel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/nsfplay/HEAD/nsfplug_ui/NSFApuPanel.cpp -------------------------------------------------------------------------------- /nsfplug_ui/NSFAudioPanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/nsfplay/HEAD/nsfplug_ui/NSFAudioPanel.h -------------------------------------------------------------------------------- /nsfplug_ui/NSFDialogs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/nsfplay/HEAD/nsfplug_ui/NSFDialogs.cpp -------------------------------------------------------------------------------- /nsfplug_ui/NSFDmcPanel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/nsfplay/HEAD/nsfplug_ui/NSFDmcPanel.cpp -------------------------------------------------------------------------------- /nsfplug_ui/NSFEasyDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/nsfplay/HEAD/nsfplug_ui/NSFEasyDialog.h -------------------------------------------------------------------------------- /nsfplug_ui/NSFFdsPanel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/nsfplay/HEAD/nsfplug_ui/NSFFdsPanel.cpp -------------------------------------------------------------------------------- /nsfplug_ui/NSFInfoDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/nsfplay/HEAD/nsfplug_ui/NSFInfoDialog.h -------------------------------------------------------------------------------- /nsfplug_ui/NSFMaskDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/nsfplay/HEAD/nsfplug_ui/NSFMaskDialog.h -------------------------------------------------------------------------------- /nsfplug_ui/NSFMixerDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/nsfplay/HEAD/nsfplug_ui/NSFMixerDialog.h -------------------------------------------------------------------------------- /nsfplug_ui/NSFMixerPanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/nsfplay/HEAD/nsfplug_ui/NSFMixerPanel.h -------------------------------------------------------------------------------- /nsfplug_ui/NSFTrackDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/nsfplay/HEAD/nsfplug_ui/NSFTrackDialog.h -------------------------------------------------------------------------------- /nsfplug_ui/hlp/nsfplug.chw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/nsfplay/HEAD/nsfplug_ui/hlp/nsfplug.chw -------------------------------------------------------------------------------- /nsfplug_ui/hlp/nsfplug.hhc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/nsfplay/HEAD/nsfplug_ui/hlp/nsfplug.hhc -------------------------------------------------------------------------------- /nsfplug_ui/hlp/nsfplug.hhp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/nsfplay/HEAD/nsfplug_ui/hlp/nsfplug.hhp -------------------------------------------------------------------------------- /nsfplug_ui/res/bitmap1.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/nsfplay/HEAD/nsfplug_ui/res/bitmap1.bmp -------------------------------------------------------------------------------- /nsfplug_ui/res/keyboard.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/nsfplay/HEAD/nsfplug_ui/res/keyboard.bmp -------------------------------------------------------------------------------- /vcm/ui/win32/res/win32.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/nsfplay/HEAD/vcm/ui/win32/res/win32.ico -------------------------------------------------------------------------------- /vcm/ui/win32/res/win32.rc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/nsfplay/HEAD/vcm/ui/win32/res/win32.rc2 -------------------------------------------------------------------------------- /vcm/ui/win32/vcmCheck.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/nsfplay/HEAD/vcm/ui/win32/vcmCheck.cpp -------------------------------------------------------------------------------- /vcm/ui/win32/vcmCombo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/nsfplay/HEAD/vcm/ui/win32/vcmCombo.cpp -------------------------------------------------------------------------------- /vcm/ui/win32/vcmSlider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/nsfplay/HEAD/vcm/ui/win32/vcmSlider.cpp -------------------------------------------------------------------------------- /vcm/ui/win32/vcm_ui.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/nsfplay/HEAD/vcm/ui/win32/vcm_ui.vcproj -------------------------------------------------------------------------------- /xgm/devices/Audio/filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/nsfplay/HEAD/xgm/devices/Audio/filter.h -------------------------------------------------------------------------------- /xgm/devices/Audio/rconv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/nsfplay/HEAD/xgm/devices/Audio/rconv.cpp -------------------------------------------------------------------------------- /xgm/devices/Audio/rconv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/nsfplay/HEAD/xgm/devices/Audio/rconv.h -------------------------------------------------------------------------------- /xgm/devices/CPU/nes_cpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/nsfplay/HEAD/xgm/devices/CPU/nes_cpu.cpp -------------------------------------------------------------------------------- /xgm/devices/Misc/detect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/nsfplay/HEAD/xgm/devices/Misc/detect.cpp -------------------------------------------------------------------------------- /xgm/devices/Misc/detect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/nsfplay/HEAD/xgm/devices/Misc/detect.h -------------------------------------------------------------------------------- /xgm/devices/Sound/nes_apu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/nsfplay/HEAD/xgm/devices/Sound/nes_apu.h -------------------------------------------------------------------------------- /xgm/player/midi_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/nsfplay/HEAD/xgm/player/midi_interface.h -------------------------------------------------------------------------------- /xgm/player/nsf/nsfconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/nsfplay/HEAD/xgm/player/nsf/nsfconfig.h -------------------------------------------------------------------------------- /xgm/player/nsf/nsfplay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/nsfplay/HEAD/xgm/player/nsf/nsfplay.cpp -------------------------------------------------------------------------------- /nsfplug_ui/NSFAudioPanel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/nsfplay/HEAD/nsfplug_ui/NSFAudioPanel.cpp -------------------------------------------------------------------------------- /nsfplug_ui/NSFConfigDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/nsfplay/HEAD/nsfplug_ui/NSFConfigDialog.h -------------------------------------------------------------------------------- /nsfplug_ui/NSFEasyDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/nsfplay/HEAD/nsfplug_ui/NSFEasyDialog.cpp -------------------------------------------------------------------------------- /nsfplug_ui/NSFInfoDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/nsfplay/HEAD/nsfplug_ui/NSFInfoDialog.cpp -------------------------------------------------------------------------------- /nsfplug_ui/NSFMaskDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/nsfplay/HEAD/nsfplug_ui/NSFMaskDialog.cpp -------------------------------------------------------------------------------- /nsfplug_ui/NSFMemoryDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/nsfplay/HEAD/nsfplug_ui/NSFMemoryDialog.h -------------------------------------------------------------------------------- /nsfplug_ui/NSFMixerDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/nsfplay/HEAD/nsfplug_ui/NSFMixerDialog.cpp -------------------------------------------------------------------------------- /nsfplug_ui/NSFMixerPanel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/nsfplay/HEAD/nsfplug_ui/NSFMixerPanel.cpp -------------------------------------------------------------------------------- /nsfplug_ui/NSFPresetDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/nsfplay/HEAD/nsfplug_ui/NSFPresetDialog.h -------------------------------------------------------------------------------- /nsfplug_ui/NSFTrackDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/nsfplay/HEAD/nsfplug_ui/NSFTrackDialog.cpp -------------------------------------------------------------------------------- /nsfplug_ui/nsfplug_ui.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/nsfplay/HEAD/nsfplug_ui/nsfplug_ui.vcproj -------------------------------------------------------------------------------- /nsfplug_ui/res/keyheader.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/nsfplay/HEAD/nsfplug_ui/res/keyheader.bmp -------------------------------------------------------------------------------- /nsfplug_ui/res/noise_lamp.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/nsfplay/HEAD/nsfplug_ui/res/noise_lamp.bmp -------------------------------------------------------------------------------- /nsfplug_ui/res/nsf_setup.rc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/nsfplay/HEAD/nsfplug_ui/res/nsf_setup.rc2 -------------------------------------------------------------------------------- /xgm/devices/Audio/filter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/nsfplay/HEAD/xgm/devices/Audio/filter.cpp -------------------------------------------------------------------------------- /xgm/devices/Memory/nes_bank.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/nsfplay/HEAD/xgm/devices/Memory/nes_bank.h -------------------------------------------------------------------------------- /xgm/devices/Sound/nes_apu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/nsfplay/HEAD/xgm/devices/Sound/nes_apu.cpp -------------------------------------------------------------------------------- /xgm/devices/Sound/nes_dmc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/nsfplay/HEAD/xgm/devices/Sound/nes_dmc.cpp -------------------------------------------------------------------------------- /xgm/devices/Sound/nes_mmc5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/nsfplay/HEAD/xgm/devices/Sound/nes_mmc5.h -------------------------------------------------------------------------------- /nsfmwin/hlp/HIDD_ROOT_DIALOG.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/nsfplay/HEAD/nsfmwin/hlp/HIDD_ROOT_DIALOG.htm -------------------------------------------------------------------------------- /nsfplug_ui/NSFConfigDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/nsfplay/HEAD/nsfplug_ui/NSFConfigDialog.cpp -------------------------------------------------------------------------------- /nsfplug_ui/NSFConfigPageDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/nsfplay/HEAD/nsfplug_ui/NSFConfigPageDevice.h -------------------------------------------------------------------------------- /nsfplug_ui/NSFConfigPageMain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/nsfplay/HEAD/nsfplug_ui/NSFConfigPageMain.cpp -------------------------------------------------------------------------------- /nsfplug_ui/NSFConfigPageMain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/nsfplay/HEAD/nsfplug_ui/NSFConfigPageMain.h -------------------------------------------------------------------------------- /nsfplug_ui/NSFMemoryDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/nsfplay/HEAD/nsfplug_ui/NSFMemoryDialog.cpp -------------------------------------------------------------------------------- /nsfplug_ui/NSFPresetDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/nsfplay/HEAD/nsfplug_ui/NSFPresetDialog.cpp -------------------------------------------------------------------------------- /nsfplug_ui/NSFTrackSetupDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/nsfplay/HEAD/nsfplug_ui/NSFTrackSetupDialog.h -------------------------------------------------------------------------------- /xgm/devices/Audio/MedianFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/nsfplay/HEAD/xgm/devices/Audio/MedianFilter.h -------------------------------------------------------------------------------- /xgm/devices/Memory/nes_bank.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/nsfplay/HEAD/xgm/devices/Memory/nes_bank.cpp -------------------------------------------------------------------------------- /xgm/devices/Memory/nes_mem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/nsfplay/HEAD/xgm/devices/Memory/nes_mem.cpp -------------------------------------------------------------------------------- /nsfmwin/hlp/IDD_NSFMWIN_DIALOG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/nsfplay/HEAD/nsfmwin/hlp/IDD_NSFMWIN_DIALOG.png -------------------------------------------------------------------------------- /nsfplug_ui/NSFConfigPageDevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/nsfplay/HEAD/nsfplug_ui/NSFConfigPageDevice.cpp -------------------------------------------------------------------------------- /nsfplug_ui/NSFMemoryWriteDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/nsfplay/HEAD/nsfplug_ui/NSFMemoryWriteDialog.h -------------------------------------------------------------------------------- /nsfplug_ui/NSFTrackSetupDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/nsfplay/HEAD/nsfplug_ui/NSFTrackSetupDialog.cpp -------------------------------------------------------------------------------- /xgm/devices/CPU/km6502/km6502.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/nsfplay/HEAD/xgm/devices/CPU/km6502/km6502.txt -------------------------------------------------------------------------------- /xgm/player/plugin/kbmedia/plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/nsfplay/HEAD/xgm/player/plugin/kbmedia/plugin.h -------------------------------------------------------------------------------- /nsfplug_ui/NSFMemoryWriteDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/nsfplay/HEAD/nsfplug_ui/NSFMemoryWriteDialog.cpp -------------------------------------------------------------------------------- /xgm/player/plugin/winamp2/in_module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/nsfplay/HEAD/xgm/player/plugin/winamp2/in_module.h -------------------------------------------------------------------------------- /xgm/player/plugin/winamp2/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/nsfplay/HEAD/xgm/player/plugin/winamp2/readme.txt -------------------------------------------------------------------------------- /xgm/player/all.h: -------------------------------------------------------------------------------- 1 | #include "nsf/nsfplay.h" 2 | #include "plugin/kbmedia/plugin.h" 3 | #include "plugin/winamp2/in_module.h" 4 | -------------------------------------------------------------------------------- /xgm/player/plugin/kbmedia/sdk/kmp_pi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/nsfplay/HEAD/xgm/player/plugin/kbmedia/sdk/kmp_pi.h -------------------------------------------------------------------------------- /xgm/player/plugin/winamp2/in_module.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/nsfplay/HEAD/xgm/player/plugin/winamp2/in_module.cpp -------------------------------------------------------------------------------- /distribute/push_winamp.bat: -------------------------------------------------------------------------------- 1 | cd /d "%~dp0" 2 | call distribute.bat 3 | copy plugins\*.* "C:\Program Files (x86)\Winamp\Plugins" 4 | pause -------------------------------------------------------------------------------- /xgm/player/plugin/winamp2/in_module_msp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/nsfplay/HEAD/xgm/player/plugin/winamp2/in_module_msp.cpp -------------------------------------------------------------------------------- /xgm/xgm.h: -------------------------------------------------------------------------------- 1 | #ifndef _XGM_H_ 2 | #define _XGM_H_ 3 | #include "devices/all.h" 4 | #include "player/all.h" 5 | #include "version.h" 6 | #endif -------------------------------------------------------------------------------- /xgm/utils/tagctrl.h: -------------------------------------------------------------------------------- 1 | #ifndef _TAG_CTRL_H_ 2 | #define _TAG_CTRL_H_ 3 | 4 | namespace xgm 5 | { 6 | } //namespace 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | #endif -------------------------------------------------------------------------------- /nsfplug_ui/hlp/intro.htm: -------------------------------------------------------------------------------- 1 | 2 |
3 | 4 |