- Notifications
You must be signed in to change notification settings - Fork0
Simple chiptune-ish synthesizer written in C.
License
SirGFM/c_synth
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
c_synth is a chiptune-ish software synthesizer. It takes a MML (actually alanguage based on MML) song as input and compiles it into the memory. Thecompiled buffer may then be played through whichever backend is desired, as longas it accepts samples in little endian and use either 16 or 8 bits samples.
All the following steps where also tested on Windows, usingMinGW.
There are no dependencies to build the library. After cloning it, simply run:
$ sudo make install DEBUG=yes$ sudo make install RELEASE=yes
The library will be installed on /usr/lib/c_synth and the headers on/usr/include/c_synth.
There are a few songs on the directory 'samples/'. They may be compiled andplayed using the examples on the directory 'tst/'.
Some tests uses SDL2 to actually play the compiled songs. On debian-baseddistros, that library may be installed by running:
$ sudo apt-get install libsdl2-dev
For other linux distros, look into your package manager or download thesource and compile it manually.
To build the tests, run:
$ make tests
To play one of the songs:
./bin/Linux/tst_repeatSongSDL2 --frequency 44100 --mode 2chan-16 --file samples/sonic2-chemical.mml
To exit, press Ctrl-C.
About
Simple chiptune-ish synthesizer written in C.