MCUME/MCUME_pico/pico64/reSID
jean-marcharvengt 97a62fd81b Improved keyboard mapping for ZX speccy 2021-09-25 15:26:09 +02:00
..
AUTHORS add initial support for raspberry PICO 2021-04-10 12:28:04 +02:00
COPYING add initial support for raspberry PICO 2021-04-10 12:28:04 +02:00
ChangeLog add initial support for raspberry PICO 2021-04-10 12:28:04 +02:00
INSTALL add initial support for raspberry PICO 2021-04-10 12:28:04 +02:00
NEWS add initial support for raspberry PICO 2021-04-10 12:28:04 +02:00
README add initial support for raspberry PICO 2021-04-10 12:28:04 +02:00
THANKS add initial support for raspberry PICO 2021-04-10 12:28:04 +02:00
TODO add initial support for raspberry PICO 2021-04-10 12:28:04 +02:00
envelope.cpp add initial support for raspberry PICO 2021-04-10 12:28:04 +02:00
envelope.h add initial support for raspberry PICO 2021-04-10 12:28:04 +02:00
extfilt.cpp add initial support for raspberry PICO 2021-04-10 12:28:04 +02:00
extfilt.h add initial support for raspberry PICO 2021-04-10 12:28:04 +02:00
filter.cpp add initial support for raspberry PICO 2021-04-10 12:28:04 +02:00
filter.h add initial support for raspberry PICO 2021-04-10 12:28:04 +02:00
filter6581.h add initial support for raspberry PICO 2021-04-10 12:28:04 +02:00
pot.cpp add initial support for raspberry PICO 2021-04-10 12:28:04 +02:00
pot.h add initial support for raspberry PICO 2021-04-10 12:28:04 +02:00
sid.cpp add initial support for raspberry PICO 2021-04-10 12:28:04 +02:00
sid.h add initial support for raspberry PICO 2021-04-10 12:28:04 +02:00
siddefs.h add initial support for raspberry PICO 2021-04-10 12:28:04 +02:00
spline.h add initial support for raspberry PICO 2021-04-10 12:28:04 +02:00
version.cpp add initial support for raspberry PICO 2021-04-10 12:28:04 +02:00
voice.cpp add initial support for raspberry PICO 2021-04-10 12:28:04 +02:00
voice.h add initial support for raspberry PICO 2021-04-10 12:28:04 +02:00
wave.cpp add initial support for raspberry PICO 2021-04-10 12:28:04 +02:00
wave.h add initial support for raspberry PICO 2021-04-10 12:28:04 +02:00
wave6581_PST.cpp add initial support for raspberry PICO 2021-04-10 12:28:04 +02:00
wave6581_PS_.cpp add initial support for raspberry PICO 2021-04-10 12:28:04 +02:00
wave6581_P_T.cpp add initial support for raspberry PICO 2021-04-10 12:28:04 +02:00
wave6581__ST.cpp add initial support for raspberry PICO 2021-04-10 12:28:04 +02:00
wave8580_PST.cpp add initial support for raspberry PICO 2021-04-10 12:28:04 +02:00
wave8580_PS_.cpp add initial support for raspberry PICO 2021-04-10 12:28:04 +02:00
wave8580_P_T.cpp add initial support for raspberry PICO 2021-04-10 12:28:04 +02:00
wave8580__ST.cpp add initial support for raspberry PICO 2021-04-10 12:28:04 +02:00

README

This is reSID, a reverse engineered software emulation of the MOS6581 SID
(Sound Interface Device). This chip was used in the Commodore 64 computer.

reSID is free software. See the file COPYING for copying permission.

reSID is a C++ library containing a complete emulation of the SID chip.
This library can be linked into programs emulating the MOS6510 MPU to
play music made for the Commodore 64 computer. reSID has been successfully
linked into VICE, a full-fledged Commodore 64 emulator, and SIDPLAY, a
popular SID tune player. The VICE home page is:
http://www.viceteam.org/
A patch for SIDPLAY can be found on the SIDPLAY home page:
http://www.geocities.com/SiliconValley/Lakes/5147/

Various SID emulators exist, however reSID should still be of great
interest to Commodore 64 nostalgics. The emulator engine is cycle-based,
emulating the internal operations of the SID chip. SID's audio filter is
modeled as an actual two-integrator-loop biquadratic filter circuit.
The engine has been developed based on available information on SID, sampling
of the OSC3 and ENV3 registers, filter theory, and meticulous testing.
In short, a scientific approach has been taken to model the SID chip as
accurately as possible.

To our knowledge reSID is by far the most accurate SID emulator ever created.
This comes at a price; what is considered a fairly fast CPU at the time of
this writing is needed to run the emulator.