├── .gitignore ├── CMakeLists.txt ├── README.md ├── logs ├── moons.txt └── turrican2.txt ├── screenshot.png ├── sids ├── Alibi.sid ├── Ballfever.sid ├── Break-up.sid ├── Clarence.sid ├── Cyberworld.sid ├── Faceless.sid ├── GoatLight_tune_1.sid ├── Solomatic_Fly.sid ├── Zimxusaf_I.sid └── pdd_oot.sid └── src ├── cpu.cpp ├── cpu.hpp ├── fx.cpp ├── fx.hpp ├── main.cpp ├── record.cpp ├── record.hpp ├── resid-0.16 ├── AUTHORS ├── COPYING ├── INSTALL ├── NEWS ├── README ├── THANKS ├── TODO ├── VC_CC_SUPPORT.txt ├── envelope.cc ├── envelope.h ├── extfilt.cc ├── extfilt.h ├── filter.cc ├── filter.h ├── pot.cc ├── pot.h ├── sid.cc ├── sid.h ├── siddefs.h ├── siddefs.h.in ├── spline.h ├── version.cc ├── voice.cc ├── voice.h ├── wave.cc ├── wave.h ├── wave6581_PST.cc ├── wave6581_PS_.cc ├── wave6581_P_T.cc ├── wave6581__ST.cc ├── wave8580_PST.cc ├── wave8580_PS_.cc ├── wave8580_P_T.cc └── wave8580__ST.cc ├── sidengine.cpp └── sidengine.hpp /.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/sid-monitor/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/sid-monitor/HEAD/README.md -------------------------------------------------------------------------------- /logs/moons.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/sid-monitor/HEAD/logs/moons.txt -------------------------------------------------------------------------------- /logs/turrican2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/sid-monitor/HEAD/logs/turrican2.txt -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/sid-monitor/HEAD/screenshot.png -------------------------------------------------------------------------------- /sids/Alibi.sid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/sid-monitor/HEAD/sids/Alibi.sid -------------------------------------------------------------------------------- /sids/Ballfever.sid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/sid-monitor/HEAD/sids/Ballfever.sid -------------------------------------------------------------------------------- /sids/Break-up.sid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/sid-monitor/HEAD/sids/Break-up.sid -------------------------------------------------------------------------------- /sids/Clarence.sid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/sid-monitor/HEAD/sids/Clarence.sid -------------------------------------------------------------------------------- /sids/Cyberworld.sid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/sid-monitor/HEAD/sids/Cyberworld.sid -------------------------------------------------------------------------------- /sids/Faceless.sid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/sid-monitor/HEAD/sids/Faceless.sid -------------------------------------------------------------------------------- /sids/GoatLight_tune_1.sid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/sid-monitor/HEAD/sids/GoatLight_tune_1.sid -------------------------------------------------------------------------------- /sids/Solomatic_Fly.sid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/sid-monitor/HEAD/sids/Solomatic_Fly.sid -------------------------------------------------------------------------------- /sids/Zimxusaf_I.sid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/sid-monitor/HEAD/sids/Zimxusaf_I.sid -------------------------------------------------------------------------------- /sids/pdd_oot.sid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/sid-monitor/HEAD/sids/pdd_oot.sid -------------------------------------------------------------------------------- /src/cpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/sid-monitor/HEAD/src/cpu.cpp -------------------------------------------------------------------------------- /src/cpu.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/sid-monitor/HEAD/src/cpu.hpp -------------------------------------------------------------------------------- /src/fx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/sid-monitor/HEAD/src/fx.cpp -------------------------------------------------------------------------------- /src/fx.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/sid-monitor/HEAD/src/fx.hpp -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/sid-monitor/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/record.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/sid-monitor/HEAD/src/record.cpp -------------------------------------------------------------------------------- /src/record.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/sid-monitor/HEAD/src/record.hpp -------------------------------------------------------------------------------- /src/resid-0.16/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/sid-monitor/HEAD/src/resid-0.16/AUTHORS -------------------------------------------------------------------------------- /src/resid-0.16/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/sid-monitor/HEAD/src/resid-0.16/COPYING -------------------------------------------------------------------------------- /src/resid-0.16/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/sid-monitor/HEAD/src/resid-0.16/INSTALL -------------------------------------------------------------------------------- /src/resid-0.16/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/sid-monitor/HEAD/src/resid-0.16/NEWS -------------------------------------------------------------------------------- /src/resid-0.16/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/sid-monitor/HEAD/src/resid-0.16/README -------------------------------------------------------------------------------- /src/resid-0.16/THANKS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/sid-monitor/HEAD/src/resid-0.16/THANKS -------------------------------------------------------------------------------- /src/resid-0.16/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/sid-monitor/HEAD/src/resid-0.16/TODO -------------------------------------------------------------------------------- /src/resid-0.16/VC_CC_SUPPORT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/sid-monitor/HEAD/src/resid-0.16/VC_CC_SUPPORT.txt -------------------------------------------------------------------------------- /src/resid-0.16/envelope.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/sid-monitor/HEAD/src/resid-0.16/envelope.cc -------------------------------------------------------------------------------- /src/resid-0.16/envelope.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/sid-monitor/HEAD/src/resid-0.16/envelope.h -------------------------------------------------------------------------------- /src/resid-0.16/extfilt.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/sid-monitor/HEAD/src/resid-0.16/extfilt.cc -------------------------------------------------------------------------------- /src/resid-0.16/extfilt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/sid-monitor/HEAD/src/resid-0.16/extfilt.h -------------------------------------------------------------------------------- /src/resid-0.16/filter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/sid-monitor/HEAD/src/resid-0.16/filter.cc -------------------------------------------------------------------------------- /src/resid-0.16/filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/sid-monitor/HEAD/src/resid-0.16/filter.h -------------------------------------------------------------------------------- /src/resid-0.16/pot.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/sid-monitor/HEAD/src/resid-0.16/pot.cc -------------------------------------------------------------------------------- /src/resid-0.16/pot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/sid-monitor/HEAD/src/resid-0.16/pot.h -------------------------------------------------------------------------------- /src/resid-0.16/sid.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/sid-monitor/HEAD/src/resid-0.16/sid.cc -------------------------------------------------------------------------------- /src/resid-0.16/sid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/sid-monitor/HEAD/src/resid-0.16/sid.h -------------------------------------------------------------------------------- /src/resid-0.16/siddefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/sid-monitor/HEAD/src/resid-0.16/siddefs.h -------------------------------------------------------------------------------- /src/resid-0.16/siddefs.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/sid-monitor/HEAD/src/resid-0.16/siddefs.h.in -------------------------------------------------------------------------------- /src/resid-0.16/spline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/sid-monitor/HEAD/src/resid-0.16/spline.h -------------------------------------------------------------------------------- /src/resid-0.16/version.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/sid-monitor/HEAD/src/resid-0.16/version.cc -------------------------------------------------------------------------------- /src/resid-0.16/voice.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/sid-monitor/HEAD/src/resid-0.16/voice.cc -------------------------------------------------------------------------------- /src/resid-0.16/voice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/sid-monitor/HEAD/src/resid-0.16/voice.h -------------------------------------------------------------------------------- /src/resid-0.16/wave.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/sid-monitor/HEAD/src/resid-0.16/wave.cc -------------------------------------------------------------------------------- /src/resid-0.16/wave.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/sid-monitor/HEAD/src/resid-0.16/wave.h -------------------------------------------------------------------------------- /src/resid-0.16/wave6581_PST.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/sid-monitor/HEAD/src/resid-0.16/wave6581_PST.cc -------------------------------------------------------------------------------- /src/resid-0.16/wave6581_PS_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/sid-monitor/HEAD/src/resid-0.16/wave6581_PS_.cc -------------------------------------------------------------------------------- /src/resid-0.16/wave6581_P_T.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/sid-monitor/HEAD/src/resid-0.16/wave6581_P_T.cc -------------------------------------------------------------------------------- /src/resid-0.16/wave6581__ST.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/sid-monitor/HEAD/src/resid-0.16/wave6581__ST.cc -------------------------------------------------------------------------------- /src/resid-0.16/wave8580_PST.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/sid-monitor/HEAD/src/resid-0.16/wave8580_PST.cc -------------------------------------------------------------------------------- /src/resid-0.16/wave8580_PS_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/sid-monitor/HEAD/src/resid-0.16/wave8580_PS_.cc -------------------------------------------------------------------------------- /src/resid-0.16/wave8580_P_T.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/sid-monitor/HEAD/src/resid-0.16/wave8580_P_T.cc -------------------------------------------------------------------------------- /src/resid-0.16/wave8580__ST.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/sid-monitor/HEAD/src/resid-0.16/wave8580__ST.cc -------------------------------------------------------------------------------- /src/sidengine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/sid-monitor/HEAD/src/sidengine.cpp -------------------------------------------------------------------------------- /src/sidengine.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/sid-monitor/HEAD/src/sidengine.hpp --------------------------------------------------------------------------------