libayemu icon indicating copy to clipboard operation
libayemu copied to clipboard

C emulation of the AY-3-8912 sound chip and parser for associated file formats - fork of http://sashnov.nm.ru/libayemu.html

Results 1 libayemu issues
Sort by recently updated
recently updated
newest added

In line 456 of ay8912.c, you have: `max_l = ay->vols[0][31] + ay->vols[2][31] + ay->vols[3][31];` I think it should be: `max_l = ay->vols[0][31] + ay->vols[2][31] + ay->vols[4][31];`