Close

SN76489 programmable sound generator

mit41301mit41301 wrote 06/26/2026 at 07:32 • 3 min read • Like

SN76489 programmable sound generator using VHDL and CPP

SN76489-DIP16

Texas Instruments SN76489 - Wikipedia

SN76489 Complex Sound Generator

VHDL, BSD 3-Clause

A huge amount of effort has gone into making this core as accurate as possible to the real IC, while at the same time making it usable in all digital SoC designs, i.e. retro-computer and game systems, etc. Design elements from the real IC were used and implemented when possible, with any work-around or changes noted along with the reasons.

Synthesized and FPGA proven:

References:

Generates:

The tone counters are period-limited to prevent the very high frequency outputs that the original IC is capable of producing. Frequencies above 20KHz cause problems in all-digital systems with sampling rates around 44.1KHz to 48KHz. The primary use of these high frequencies was as a carrier for amplitude modulated (AM) audio. The high frequency would be filtered out by external electronics, leaving only the low frequency audio.

When the tone counters are limited, the output square-wave is disabled, but the amplitude can still be changed, which allows the A.M. technique to still work in a digital Soc.

I/O requires at least two clock-enable cycles. This could be modified to operate faster, i.e. based on the input-clock directly. All inputs are registered at the system-clock rate.

Optionally simulates the original 32-clock (clock-enable) I/O cycle.

The SN76489 does not have an external reset and the original IC "wakes up" generating a tone. This implementation sets the default output level to full attenuation (silent output). If the original functionality is desired, modify the channel period and level register initial values.

Basic I/O interface use:

SN76489 Complex Sound Generator 

TDSN76489

SN76489 implementation for Teensyduino Audio Library

Information regarding the implementation of the Sega Master System's variant of the SN76489 can be found at: http://www.smspower.org/Development/SN76489

Example sketches in this library use VGM files to test the SN76489. VGM files for Master System are commonly found in compressed format (7z) on the web. To use them with this libary you will need to extract them:

Linux users:

7za -e %vgmfile>#/p###

Afterwards, if you wish to generate a header file which can be included in a project:

xxd --include %extractedvgmfile% &> %file>#/p###

Windows users: ask google

TDSN76489 

Like

Discussions