YM2151 clone in verilog. FPGA proven. (c) Jose Tejada 2016. Twitter: @topapate
You can show your appreciation through
Originally posted in opencores. The Github repository is now the main one.
If you are using JT51 in a git project, the best way to add it to your project is:
- Optionally fork JT51's repository to your own GitHub account
- Add it as a submodule to your git project:
git submodule add https://github.com/jotego/jt51.git
- Now you can refer to the RTL files in jt51/hdl
The advantages of a using a git submodule are:
- Your project contains a reference to a commit of the JT51 repository
- As long as you do not manually update the JT51 submodule, it will keep pointing to the same commit
- Each time you make a commit in your project, it will include a pointer to the JT51 commit used. So you will always know the JT51 that worked for you
- If JT51 is updated and you want to get the changes, simply update the submodule using git. The new JT51 commit used will be annotated in your project's next commit. So the history of your project will reflect that change too.
- JT51 files will be intact and you will use the files without altering them.
- jt51/doc contains documentation related to JT51 and YM2151
- jt51/hdl contains all the Verilog source code to implement JT51 on FPGA or ASIC
- jt51/hdl/filter contains an interpolator to use as first stage to on-chip sigma-delta DACs
- jt51/syn contains some use case examples. It has synthesizable projects in various platforms
- jt51/syn/xilinx/contra sound board of the arcade Contra. Checkout hdl subfolder for the verilog files
All files are in jt51/hdl. The top level file is jt51.v. You need all files in the jt51/hdl folder to synthesize or simulate the design.
Alternatively you can just use the file jt51_v1.1.v at the release folder. It contains all the necessary files concatenated inside. It is generated by the script in bin/jt51_singlefile.sh
Simulation modules are added if macros - SIMULATION - JT51_DEBUG are defined
Use macro JT51_ONLYTIMERS in order to avoid simulating the FM signal chain but keep the timer modules working. This is useful if a CPU depends on the timer interrupts but you do not want to simulate the full FM sound (to speed up sims).
Other sound chips from the same author
Chip | Repository |
---|---|
YM2203, YM2612, YM2610 | JT12 |
YM2151 | JT51 |
YM3526 | JTOPL |
YM2149 | JT49 |
sn76489an | JT89 |
OKI 6295 | JT6295 |
OKI MSM5205 | JT5205 |
This sound core has been used at least in the following arcade cores for FPGA
- JTCPS1: CAPCOM SYSTEM arcade clone
- JTDD: Double Dragon 1 & 2 arcade clone
- JTGNG: arcade clones of pre-CPS CAPCOM games. Some use YM2151 through JT51
More to come soon!