├── .gitignore ├── Images └── block-diagram.jpg ├── README.md ├── proj.tcl ├── proj └── .keep ├── repo ├── .keep ├── ADSR_2.0 │ ├── bd │ │ └── bd.tcl │ ├── component.xml │ ├── drivers │ │ └── ADSR_v1_0 │ │ │ ├── data │ │ │ ├── ADSR.mdd │ │ │ └── ADSR.tcl │ │ │ └── src │ │ │ ├── ADSR.c │ │ │ ├── ADSR.h │ │ │ ├── ADSR_selftest.c │ │ │ └── Makefile │ ├── example_designs │ │ ├── bfm_design │ │ │ ├── ADSR_v2_0_tb.sv │ │ │ └── design.tcl │ │ └── debug_hw_design │ │ │ ├── ADSR_v2_0_hw_test.tcl │ │ │ └── design.tcl │ ├── hdl │ │ ├── ADSR_v2_0.vhd │ │ ├── ADSR_v2_0_M_AXIS_OUTPUT.vhd │ │ └── ADSR_v2_0_S_AXI_CTRL.vhd │ ├── src │ │ ├── adsr.vhd │ │ └── fifo.vhd │ └── xgui │ │ └── ADSR_v2_0.tcl ├── I2S-Transceiver │ ├── component.xml │ ├── i2s.vhd │ └── xgui │ │ ├── I2S_Transceiver_v1_0.tcl │ │ └── i2s_v1_0.tcl ├── LFO_1.0 │ ├── bd │ │ └── bd.tcl │ ├── component.xml │ ├── drivers │ │ └── LFO_v1_0 │ │ │ ├── data │ │ │ ├── LFO.mdd │ │ │ └── LFO.tcl │ │ │ └── src │ │ │ ├── LFO.c │ │ │ ├── LFO.h │ │ │ ├── LFO_selftest.c │ │ │ └── Makefile │ ├── example_designs │ │ ├── bfm_design │ │ │ ├── LFO_v1_0_tb.sv │ │ │ └── design.tcl │ │ └── debug_hw_design │ │ │ ├── LFO_v1_0_hw_test.tcl │ │ │ └── design.tcl │ ├── hdl │ │ ├── LFO_v1_0.vhd │ │ ├── LFO_v1_0_M_AXIS_OUTPUT.vhd │ │ └── LFO_v1_0_S_AXI_CTRL.vhd │ ├── src │ │ ├── fifo.vhd │ │ ├── low_frequency_oscillator.vhd │ │ ├── shift_register.vhd │ │ └── sine_wavetable.vhd │ └── xgui │ │ └── LFO_v1_0.tcl ├── Mixer_2.0 │ ├── bd │ │ └── bd.tcl │ ├── component.xml │ ├── hdl │ │ ├── Mixer_v2_0.vhd │ │ └── Mixer_v2_0_S_AXIS_INPUT.vhd │ ├── src │ │ ├── fifo.vhd │ │ └── mixer.vhd │ └── xgui │ │ └── Mixer_v2_0.tcl ├── Moog_Ladder_Filter_1.0 │ ├── bd │ │ └── bd.tcl │ ├── component.xml │ ├── drivers │ │ └── Moog_Ladder_Filter_v1_0 │ │ │ ├── data │ │ │ ├── Moog_Ladder_Filter.mdd │ │ │ └── Moog_Ladder_Filter.tcl │ │ │ └── src │ │ │ ├── Makefile │ │ │ ├── Moog_Ladder_Filter.c │ │ │ ├── Moog_Ladder_Filter.h │ │ │ └── Moog_Ladder_Filter_selftest.c │ ├── example_designs │ │ ├── bfm_design │ │ │ ├── Moog_Ladder_Filter_v1_0_tb.sv │ │ │ └── design.tcl │ │ └── debug_hw_design │ │ │ ├── Moog_Ladder_Filter_v1_0_hw_test.tcl │ │ │ └── design.tcl │ ├── hdl │ │ ├── Moog_Ladder_Filter_v1_0.vhd │ │ ├── Moog_Ladder_Filter_v1_0_M_AXIS_OUTPUT.vhd │ │ ├── Moog_Ladder_Filter_v1_0_S_AXIS_ADSR.vhd │ │ ├── Moog_Ladder_Filter_v1_0_S_AXIS_INPUT.vhd │ │ ├── Moog_Ladder_Filter_v1_0_S_AXI_CTRL.vhd │ │ └── Moog_Ladder_Filter_v1_0_S_AXI_MODULATION.vhd │ ├── src │ │ ├── fifo.vhd │ │ ├── moog-ladder-filter.vhd │ │ ├── moog_ladder_filter_wrapper.vhd │ │ ├── one_pole_filter.vhd │ │ ├── polynomial.vhd │ │ ├── shift_register.vhd │ │ └── tanh_function.vhd │ └── xgui │ │ └── Moog_Ladder_Filter_v1_0.tcl ├── Multiplier_2.0 │ ├── bd │ │ └── bd.tcl │ ├── component.xml │ ├── hdl │ │ ├── Multiplier_v2_0.vhd │ │ ├── Multiplier_v2_0_M_AXIS_OUTPUT.vhd │ │ ├── Multiplier_v2_0_S_AXIS_ENVELOPE.vhd │ │ └── Multiplier_v2_0_S_AXIS_INPUT.vhd │ ├── src │ │ ├── fifo.vhd │ │ └── multiplier.vhd │ └── xgui │ │ └── Multiplier_v2_0.tcl └── Oscillator_2.0 │ ├── bd │ └── bd.tcl │ ├── component.xml │ ├── drivers │ └── Oscillator_v1_0 │ │ ├── data │ │ ├── Oscillator.mdd │ │ └── Oscillator.tcl │ │ └── src │ │ ├── Makefile │ │ ├── Oscillator.c │ │ ├── Oscillator.h │ │ └── Oscillator_selftest.c │ ├── example_designs │ ├── bfm_design │ │ ├── Oscillator_v2_0_tb.sv │ │ └── design.tcl │ └── debug_hw_design │ │ ├── Oscillator_v2_0_hw_test.tcl │ │ └── design.tcl │ ├── hdl │ ├── Oscillator_v2_0.vhd │ ├── Oscillator_v2_0_M_AXIS_OUTPUT.vhd │ ├── Oscillator_v2_0_S_AXIS_FREQ_MOD.vhd │ ├── Oscillator_v2_0_S_AXIS_PWM.vhd │ └── Oscillator_v2_0_S_AXI_CTRL.vhd │ ├── src │ ├── fifo.vhd │ ├── oscillator.vhd │ ├── oscillator_wrapper.vhd │ ├── sawtooth0.txt │ ├── sawtooth1.txt │ ├── sawtooth2.txt │ ├── sawtooth3.txt │ ├── sawtooth4.txt │ ├── sawtooth5.txt │ ├── sawtooth6.txt │ ├── sawtooth7.txt │ ├── sawtooth8.txt │ ├── sawtooth9.txt │ ├── sawtooth_wavetable.vhd │ ├── shift_register.vhd │ ├── sine_wavetable.vhd │ ├── tb_oscillator.vhd │ ├── tb_oscillator_ip.vhd │ ├── triangle0.txt │ ├── triangle1.txt │ ├── triangle2.txt │ ├── triangle3.txt │ ├── triangle4.txt │ ├── triangle5.txt │ ├── triangle6.txt │ ├── triangle7.txt │ ├── triangle8.txt │ ├── triangle9.txt │ └── triangle_wavetable.vhd │ └── xgui │ └── Oscillator_v2_0.tcl ├── sdk ├── .keep ├── Synthesizer │ ├── .cproject │ ├── .project │ ├── Debug │ │ ├── Synthesizer.elf │ │ └── Synthesizer.elf.size │ └── src │ │ ├── README.txt │ │ ├── Synthesizer.h │ │ ├── Xilinx.spec │ │ ├── lscript.ld │ │ └── main.c ├── Synthesizer_bsp │ ├── .cproject │ ├── .project │ ├── .sdkproject │ ├── Makefile │ └── system.mss └── system_wrapper_hw_platform_0 │ ├── .project │ └── system.hdf ├── src ├── bd │ ├── .keep │ └── system.tcl ├── constraints │ ├── .keep │ └── Zedboard-Master.xdc ├── hdl │ ├── .keep │ ├── axi_sim_package.vhd │ ├── synth_module_sim_package.vhd │ ├── tb_adsr_module.vhd │ ├── tb_lfo_module.vhd │ ├── tb_mixer_module.vhd │ ├── tb_moog_filter_module.vhd │ ├── tb_nca_module.vhd │ ├── tb_oscillator_module.vhd │ └── tb_system.vhd └── ip │ └── .keep └── system_wrapper.hdf /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laura-regan/Digital-Synthesizer/HEAD/.gitignore -------------------------------------------------------------------------------- /Images/block-diagram.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laura-regan/Digital-Synthesizer/HEAD/Images/block-diagram.jpg -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laura-regan/Digital-Synthesizer/HEAD/README.md -------------------------------------------------------------------------------- /proj.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laura-regan/Digital-Synthesizer/HEAD/proj.tcl -------------------------------------------------------------------------------- /proj/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repo/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repo/ADSR_2.0/bd/bd.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laura-regan/Digital-Synthesizer/HEAD/repo/ADSR_2.0/bd/bd.tcl -------------------------------------------------------------------------------- /repo/ADSR_2.0/component.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laura-regan/Digital-Synthesizer/HEAD/repo/ADSR_2.0/component.xml -------------------------------------------------------------------------------- /repo/ADSR_2.0/drivers/ADSR_v1_0/data/ADSR.mdd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laura-regan/Digital-Synthesizer/HEAD/repo/ADSR_2.0/drivers/ADSR_v1_0/data/ADSR.mdd -------------------------------------------------------------------------------- /repo/ADSR_2.0/drivers/ADSR_v1_0/data/ADSR.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laura-regan/Digital-Synthesizer/HEAD/repo/ADSR_2.0/drivers/ADSR_v1_0/data/ADSR.tcl -------------------------------------------------------------------------------- /repo/ADSR_2.0/drivers/ADSR_v1_0/src/ADSR.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laura-regan/Digital-Synthesizer/HEAD/repo/ADSR_2.0/drivers/ADSR_v1_0/src/ADSR.c -------------------------------------------------------------------------------- /repo/ADSR_2.0/drivers/ADSR_v1_0/src/ADSR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laura-regan/Digital-Synthesizer/HEAD/repo/ADSR_2.0/drivers/ADSR_v1_0/src/ADSR.h -------------------------------------------------------------------------------- /repo/ADSR_2.0/drivers/ADSR_v1_0/src/ADSR_selftest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laura-regan/Digital-Synthesizer/HEAD/repo/ADSR_2.0/drivers/ADSR_v1_0/src/ADSR_selftest.c -------------------------------------------------------------------------------- /repo/ADSR_2.0/drivers/ADSR_v1_0/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laura-regan/Digital-Synthesizer/HEAD/repo/ADSR_2.0/drivers/ADSR_v1_0/src/Makefile -------------------------------------------------------------------------------- /repo/ADSR_2.0/example_designs/bfm_design/ADSR_v2_0_tb.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laura-regan/Digital-Synthesizer/HEAD/repo/ADSR_2.0/example_designs/bfm_design/ADSR_v2_0_tb.sv -------------------------------------------------------------------------------- /repo/ADSR_2.0/example_designs/bfm_design/design.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laura-regan/Digital-Synthesizer/HEAD/repo/ADSR_2.0/example_designs/bfm_design/design.tcl -------------------------------------------------------------------------------- /repo/ADSR_2.0/example_designs/debug_hw_design/ADSR_v2_0_hw_test.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laura-regan/Digital-Synthesizer/HEAD/repo/ADSR_2.0/example_designs/debug_hw_design/ADSR_v2_0_hw_test.tcl -------------------------------------------------------------------------------- /repo/ADSR_2.0/example_designs/debug_hw_design/design.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laura-regan/Digital-Synthesizer/HEAD/repo/ADSR_2.0/example_designs/debug_hw_design/design.tcl -------------------------------------------------------------------------------- /repo/ADSR_2.0/hdl/ADSR_v2_0.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laura-regan/Digital-Synthesizer/HEAD/repo/ADSR_2.0/hdl/ADSR_v2_0.vhd -------------------------------------------------------------------------------- /repo/ADSR_2.0/hdl/ADSR_v2_0_M_AXIS_OUTPUT.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laura-regan/Digital-Synthesizer/HEAD/repo/ADSR_2.0/hdl/ADSR_v2_0_M_AXIS_OUTPUT.vhd -------------------------------------------------------------------------------- /repo/ADSR_2.0/hdl/ADSR_v2_0_S_AXI_CTRL.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laura-regan/Digital-Synthesizer/HEAD/repo/ADSR_2.0/hdl/ADSR_v2_0_S_AXI_CTRL.vhd -------------------------------------------------------------------------------- /repo/ADSR_2.0/src/adsr.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laura-regan/Digital-Synthesizer/HEAD/repo/ADSR_2.0/src/adsr.vhd -------------------------------------------------------------------------------- /repo/ADSR_2.0/src/fifo.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laura-regan/Digital-Synthesizer/HEAD/repo/ADSR_2.0/src/fifo.vhd -------------------------------------------------------------------------------- /repo/ADSR_2.0/xgui/ADSR_v2_0.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laura-regan/Digital-Synthesizer/HEAD/repo/ADSR_2.0/xgui/ADSR_v2_0.tcl -------------------------------------------------------------------------------- /repo/I2S-Transceiver/component.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laura-regan/Digital-Synthesizer/HEAD/repo/I2S-Transceiver/component.xml -------------------------------------------------------------------------------- /repo/I2S-Transceiver/i2s.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laura-regan/Digital-Synthesizer/HEAD/repo/I2S-Transceiver/i2s.vhd -------------------------------------------------------------------------------- /repo/I2S-Transceiver/xgui/I2S_Transceiver_v1_0.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laura-regan/Digital-Synthesizer/HEAD/repo/I2S-Transceiver/xgui/I2S_Transceiver_v1_0.tcl -------------------------------------------------------------------------------- /repo/I2S-Transceiver/xgui/i2s_v1_0.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laura-regan/Digital-Synthesizer/HEAD/repo/I2S-Transceiver/xgui/i2s_v1_0.tcl -------------------------------------------------------------------------------- /repo/LFO_1.0/bd/bd.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laura-regan/Digital-Synthesizer/HEAD/repo/LFO_1.0/bd/bd.tcl -------------------------------------------------------------------------------- /repo/LFO_1.0/component.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laura-regan/Digital-Synthesizer/HEAD/repo/LFO_1.0/component.xml -------------------------------------------------------------------------------- /repo/LFO_1.0/drivers/LFO_v1_0/data/LFO.mdd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laura-regan/Digital-Synthesizer/HEAD/repo/LFO_1.0/drivers/LFO_v1_0/data/LFO.mdd -------------------------------------------------------------------------------- /repo/LFO_1.0/drivers/LFO_v1_0/data/LFO.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laura-regan/Digital-Synthesizer/HEAD/repo/LFO_1.0/drivers/LFO_v1_0/data/LFO.tcl -------------------------------------------------------------------------------- /repo/LFO_1.0/drivers/LFO_v1_0/src/LFO.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laura-regan/Digital-Synthesizer/HEAD/repo/LFO_1.0/drivers/LFO_v1_0/src/LFO.c -------------------------------------------------------------------------------- /repo/LFO_1.0/drivers/LFO_v1_0/src/LFO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laura-regan/Digital-Synthesizer/HEAD/repo/LFO_1.0/drivers/LFO_v1_0/src/LFO.h -------------------------------------------------------------------------------- /repo/LFO_1.0/drivers/LFO_v1_0/src/LFO_selftest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laura-regan/Digital-Synthesizer/HEAD/repo/LFO_1.0/drivers/LFO_v1_0/src/LFO_selftest.c -------------------------------------------------------------------------------- /repo/LFO_1.0/drivers/LFO_v1_0/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laura-regan/Digital-Synthesizer/HEAD/repo/LFO_1.0/drivers/LFO_v1_0/src/Makefile -------------------------------------------------------------------------------- /repo/LFO_1.0/example_designs/bfm_design/LFO_v1_0_tb.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laura-regan/Digital-Synthesizer/HEAD/repo/LFO_1.0/example_designs/bfm_design/LFO_v1_0_tb.sv -------------------------------------------------------------------------------- /repo/LFO_1.0/example_designs/bfm_design/design.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laura-regan/Digital-Synthesizer/HEAD/repo/LFO_1.0/example_designs/bfm_design/design.tcl -------------------------------------------------------------------------------- /repo/LFO_1.0/example_designs/debug_hw_design/LFO_v1_0_hw_test.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laura-regan/Digital-Synthesizer/HEAD/repo/LFO_1.0/example_designs/debug_hw_design/LFO_v1_0_hw_test.tcl -------------------------------------------------------------------------------- /repo/LFO_1.0/example_designs/debug_hw_design/design.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laura-regan/Digital-Synthesizer/HEAD/repo/LFO_1.0/example_designs/debug_hw_design/design.tcl -------------------------------------------------------------------------------- /repo/LFO_1.0/hdl/LFO_v1_0.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laura-regan/Digital-Synthesizer/HEAD/repo/LFO_1.0/hdl/LFO_v1_0.vhd -------------------------------------------------------------------------------- /repo/LFO_1.0/hdl/LFO_v1_0_M_AXIS_OUTPUT.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laura-regan/Digital-Synthesizer/HEAD/repo/LFO_1.0/hdl/LFO_v1_0_M_AXIS_OUTPUT.vhd -------------------------------------------------------------------------------- /repo/LFO_1.0/hdl/LFO_v1_0_S_AXI_CTRL.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laura-regan/Digital-Synthesizer/HEAD/repo/LFO_1.0/hdl/LFO_v1_0_S_AXI_CTRL.vhd -------------------------------------------------------------------------------- /repo/LFO_1.0/src/fifo.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laura-regan/Digital-Synthesizer/HEAD/repo/LFO_1.0/src/fifo.vhd -------------------------------------------------------------------------------- /repo/LFO_1.0/src/low_frequency_oscillator.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laura-regan/Digital-Synthesizer/HEAD/repo/LFO_1.0/src/low_frequency_oscillator.vhd -------------------------------------------------------------------------------- /repo/LFO_1.0/src/shift_register.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laura-regan/Digital-Synthesizer/HEAD/repo/LFO_1.0/src/shift_register.vhd -------------------------------------------------------------------------------- /repo/LFO_1.0/src/sine_wavetable.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laura-regan/Digital-Synthesizer/HEAD/repo/LFO_1.0/src/sine_wavetable.vhd -------------------------------------------------------------------------------- /repo/LFO_1.0/xgui/LFO_v1_0.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laura-regan/Digital-Synthesizer/HEAD/repo/LFO_1.0/xgui/LFO_v1_0.tcl -------------------------------------------------------------------------------- /repo/Mixer_2.0/bd/bd.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laura-regan/Digital-Synthesizer/HEAD/repo/Mixer_2.0/bd/bd.tcl -------------------------------------------------------------------------------- /repo/Mixer_2.0/component.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laura-regan/Digital-Synthesizer/HEAD/repo/Mixer_2.0/component.xml -------------------------------------------------------------------------------- /repo/Mixer_2.0/hdl/Mixer_v2_0.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laura-regan/Digital-Synthesizer/HEAD/repo/Mixer_2.0/hdl/Mixer_v2_0.vhd -------------------------------------------------------------------------------- /repo/Mixer_2.0/hdl/Mixer_v2_0_S_AXIS_INPUT.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laura-regan/Digital-Synthesizer/HEAD/repo/Mixer_2.0/hdl/Mixer_v2_0_S_AXIS_INPUT.vhd -------------------------------------------------------------------------------- /repo/Mixer_2.0/src/fifo.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laura-regan/Digital-Synthesizer/HEAD/repo/Mixer_2.0/src/fifo.vhd -------------------------------------------------------------------------------- /repo/Mixer_2.0/src/mixer.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laura-regan/Digital-Synthesizer/HEAD/repo/Mixer_2.0/src/mixer.vhd -------------------------------------------------------------------------------- /repo/Mixer_2.0/xgui/Mixer_v2_0.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laura-regan/Digital-Synthesizer/HEAD/repo/Mixer_2.0/xgui/Mixer_v2_0.tcl -------------------------------------------------------------------------------- /repo/Moog_Ladder_Filter_1.0/bd/bd.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laura-regan/Digital-Synthesizer/HEAD/repo/Moog_Ladder_Filter_1.0/bd/bd.tcl -------------------------------------------------------------------------------- /repo/Moog_Ladder_Filter_1.0/component.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laura-regan/Digital-Synthesizer/HEAD/repo/Moog_Ladder_Filter_1.0/component.xml -------------------------------------------------------------------------------- /repo/Moog_Ladder_Filter_1.0/drivers/Moog_Ladder_Filter_v1_0/data/Moog_Ladder_Filter.mdd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laura-regan/Digital-Synthesizer/HEAD/repo/Moog_Ladder_Filter_1.0/drivers/Moog_Ladder_Filter_v1_0/data/Moog_Ladder_Filter.mdd -------------------------------------------------------------------------------- /repo/Moog_Ladder_Filter_1.0/drivers/Moog_Ladder_Filter_v1_0/data/Moog_Ladder_Filter.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laura-regan/Digital-Synthesizer/HEAD/repo/Moog_Ladder_Filter_1.0/drivers/Moog_Ladder_Filter_v1_0/data/Moog_Ladder_Filter.tcl -------------------------------------------------------------------------------- /repo/Moog_Ladder_Filter_1.0/drivers/Moog_Ladder_Filter_v1_0/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laura-regan/Digital-Synthesizer/HEAD/repo/Moog_Ladder_Filter_1.0/drivers/Moog_Ladder_Filter_v1_0/src/Makefile -------------------------------------------------------------------------------- /repo/Moog_Ladder_Filter_1.0/drivers/Moog_Ladder_Filter_v1_0/src/Moog_Ladder_Filter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laura-regan/Digital-Synthesizer/HEAD/repo/Moog_Ladder_Filter_1.0/drivers/Moog_Ladder_Filter_v1_0/src/Moog_Ladder_Filter.c -------------------------------------------------------------------------------- /repo/Moog_Ladder_Filter_1.0/drivers/Moog_Ladder_Filter_v1_0/src/Moog_Ladder_Filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laura-regan/Digital-Synthesizer/HEAD/repo/Moog_Ladder_Filter_1.0/drivers/Moog_Ladder_Filter_v1_0/src/Moog_Ladder_Filter.h -------------------------------------------------------------------------------- /repo/Moog_Ladder_Filter_1.0/drivers/Moog_Ladder_Filter_v1_0/src/Moog_Ladder_Filter_selftest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laura-regan/Digital-Synthesizer/HEAD/repo/Moog_Ladder_Filter_1.0/drivers/Moog_Ladder_Filter_v1_0/src/Moog_Ladder_Filter_selftest.c -------------------------------------------------------------------------------- /repo/Moog_Ladder_Filter_1.0/example_designs/bfm_design/Moog_Ladder_Filter_v1_0_tb.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laura-regan/Digital-Synthesizer/HEAD/repo/Moog_Ladder_Filter_1.0/example_designs/bfm_design/Moog_Ladder_Filter_v1_0_tb.sv -------------------------------------------------------------------------------- /repo/Moog_Ladder_Filter_1.0/example_designs/bfm_design/design.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laura-regan/Digital-Synthesizer/HEAD/repo/Moog_Ladder_Filter_1.0/example_designs/bfm_design/design.tcl -------------------------------------------------------------------------------- /repo/Moog_Ladder_Filter_1.0/example_designs/debug_hw_design/Moog_Ladder_Filter_v1_0_hw_test.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laura-regan/Digital-Synthesizer/HEAD/repo/Moog_Ladder_Filter_1.0/example_designs/debug_hw_design/Moog_Ladder_Filter_v1_0_hw_test.tcl -------------------------------------------------------------------------------- /repo/Moog_Ladder_Filter_1.0/example_designs/debug_hw_design/design.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laura-regan/Digital-Synthesizer/HEAD/repo/Moog_Ladder_Filter_1.0/example_designs/debug_hw_design/design.tcl -------------------------------------------------------------------------------- /repo/Moog_Ladder_Filter_1.0/hdl/Moog_Ladder_Filter_v1_0.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laura-regan/Digital-Synthesizer/HEAD/repo/Moog_Ladder_Filter_1.0/hdl/Moog_Ladder_Filter_v1_0.vhd -------------------------------------------------------------------------------- /repo/Moog_Ladder_Filter_1.0/hdl/Moog_Ladder_Filter_v1_0_M_AXIS_OUTPUT.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laura-regan/Digital-Synthesizer/HEAD/repo/Moog_Ladder_Filter_1.0/hdl/Moog_Ladder_Filter_v1_0_M_AXIS_OUTPUT.vhd -------------------------------------------------------------------------------- /repo/Moog_Ladder_Filter_1.0/hdl/Moog_Ladder_Filter_v1_0_S_AXIS_ADSR.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laura-regan/Digital-Synthesizer/HEAD/repo/Moog_Ladder_Filter_1.0/hdl/Moog_Ladder_Filter_v1_0_S_AXIS_ADSR.vhd -------------------------------------------------------------------------------- /repo/Moog_Ladder_Filter_1.0/hdl/Moog_Ladder_Filter_v1_0_S_AXIS_INPUT.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laura-regan/Digital-Synthesizer/HEAD/repo/Moog_Ladder_Filter_1.0/hdl/Moog_Ladder_Filter_v1_0_S_AXIS_INPUT.vhd -------------------------------------------------------------------------------- /repo/Moog_Ladder_Filter_1.0/hdl/Moog_Ladder_Filter_v1_0_S_AXI_CTRL.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laura-regan/Digital-Synthesizer/HEAD/repo/Moog_Ladder_Filter_1.0/hdl/Moog_Ladder_Filter_v1_0_S_AXI_CTRL.vhd -------------------------------------------------------------------------------- /repo/Moog_Ladder_Filter_1.0/hdl/Moog_Ladder_Filter_v1_0_S_AXI_MODULATION.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laura-regan/Digital-Synthesizer/HEAD/repo/Moog_Ladder_Filter_1.0/hdl/Moog_Ladder_Filter_v1_0_S_AXI_MODULATION.vhd -------------------------------------------------------------------------------- /repo/Moog_Ladder_Filter_1.0/src/fifo.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laura-regan/Digital-Synthesizer/HEAD/repo/Moog_Ladder_Filter_1.0/src/fifo.vhd -------------------------------------------------------------------------------- /repo/Moog_Ladder_Filter_1.0/src/moog-ladder-filter.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laura-regan/Digital-Synthesizer/HEAD/repo/Moog_Ladder_Filter_1.0/src/moog-ladder-filter.vhd -------------------------------------------------------------------------------- /repo/Moog_Ladder_Filter_1.0/src/moog_ladder_filter_wrapper.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laura-regan/Digital-Synthesizer/HEAD/repo/Moog_Ladder_Filter_1.0/src/moog_ladder_filter_wrapper.vhd -------------------------------------------------------------------------------- /repo/Moog_Ladder_Filter_1.0/src/one_pole_filter.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laura-regan/Digital-Synthesizer/HEAD/repo/Moog_Ladder_Filter_1.0/src/one_pole_filter.vhd -------------------------------------------------------------------------------- /repo/Moog_Ladder_Filter_1.0/src/polynomial.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laura-regan/Digital-Synthesizer/HEAD/repo/Moog_Ladder_Filter_1.0/src/polynomial.vhd -------------------------------------------------------------------------------- /repo/Moog_Ladder_Filter_1.0/src/shift_register.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laura-regan/Digital-Synthesizer/HEAD/repo/Moog_Ladder_Filter_1.0/src/shift_register.vhd -------------------------------------------------------------------------------- /repo/Moog_Ladder_Filter_1.0/src/tanh_function.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laura-regan/Digital-Synthesizer/HEAD/repo/Moog_Ladder_Filter_1.0/src/tanh_function.vhd -------------------------------------------------------------------------------- /repo/Moog_Ladder_Filter_1.0/xgui/Moog_Ladder_Filter_v1_0.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laura-regan/Digital-Synthesizer/HEAD/repo/Moog_Ladder_Filter_1.0/xgui/Moog_Ladder_Filter_v1_0.tcl -------------------------------------------------------------------------------- /repo/Multiplier_2.0/bd/bd.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laura-regan/Digital-Synthesizer/HEAD/repo/Multiplier_2.0/bd/bd.tcl -------------------------------------------------------------------------------- /repo/Multiplier_2.0/component.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laura-regan/Digital-Synthesizer/HEAD/repo/Multiplier_2.0/component.xml -------------------------------------------------------------------------------- /repo/Multiplier_2.0/hdl/Multiplier_v2_0.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laura-regan/Digital-Synthesizer/HEAD/repo/Multiplier_2.0/hdl/Multiplier_v2_0.vhd -------------------------------------------------------------------------------- /repo/Multiplier_2.0/hdl/Multiplier_v2_0_M_AXIS_OUTPUT.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laura-regan/Digital-Synthesizer/HEAD/repo/Multiplier_2.0/hdl/Multiplier_v2_0_M_AXIS_OUTPUT.vhd -------------------------------------------------------------------------------- /repo/Multiplier_2.0/hdl/Multiplier_v2_0_S_AXIS_ENVELOPE.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laura-regan/Digital-Synthesizer/HEAD/repo/Multiplier_2.0/hdl/Multiplier_v2_0_S_AXIS_ENVELOPE.vhd -------------------------------------------------------------------------------- /repo/Multiplier_2.0/hdl/Multiplier_v2_0_S_AXIS_INPUT.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laura-regan/Digital-Synthesizer/HEAD/repo/Multiplier_2.0/hdl/Multiplier_v2_0_S_AXIS_INPUT.vhd -------------------------------------------------------------------------------- /repo/Multiplier_2.0/src/fifo.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laura-regan/Digital-Synthesizer/HEAD/repo/Multiplier_2.0/src/fifo.vhd -------------------------------------------------------------------------------- /repo/Multiplier_2.0/src/multiplier.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laura-regan/Digital-Synthesizer/HEAD/repo/Multiplier_2.0/src/multiplier.vhd -------------------------------------------------------------------------------- /repo/Multiplier_2.0/xgui/Multiplier_v2_0.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laura-regan/Digital-Synthesizer/HEAD/repo/Multiplier_2.0/xgui/Multiplier_v2_0.tcl -------------------------------------------------------------------------------- /repo/Oscillator_2.0/bd/bd.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laura-regan/Digital-Synthesizer/HEAD/repo/Oscillator_2.0/bd/bd.tcl -------------------------------------------------------------------------------- /repo/Oscillator_2.0/component.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laura-regan/Digital-Synthesizer/HEAD/repo/Oscillator_2.0/component.xml -------------------------------------------------------------------------------- /repo/Oscillator_2.0/drivers/Oscillator_v1_0/data/Oscillator.mdd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laura-regan/Digital-Synthesizer/HEAD/repo/Oscillator_2.0/drivers/Oscillator_v1_0/data/Oscillator.mdd -------------------------------------------------------------------------------- /repo/Oscillator_2.0/drivers/Oscillator_v1_0/data/Oscillator.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laura-regan/Digital-Synthesizer/HEAD/repo/Oscillator_2.0/drivers/Oscillator_v1_0/data/Oscillator.tcl -------------------------------------------------------------------------------- /repo/Oscillator_2.0/drivers/Oscillator_v1_0/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laura-regan/Digital-Synthesizer/HEAD/repo/Oscillator_2.0/drivers/Oscillator_v1_0/src/Makefile -------------------------------------------------------------------------------- /repo/Oscillator_2.0/drivers/Oscillator_v1_0/src/Oscillator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laura-regan/Digital-Synthesizer/HEAD/repo/Oscillator_2.0/drivers/Oscillator_v1_0/src/Oscillator.c -------------------------------------------------------------------------------- /repo/Oscillator_2.0/drivers/Oscillator_v1_0/src/Oscillator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laura-regan/Digital-Synthesizer/HEAD/repo/Oscillator_2.0/drivers/Oscillator_v1_0/src/Oscillator.h -------------------------------------------------------------------------------- /repo/Oscillator_2.0/drivers/Oscillator_v1_0/src/Oscillator_selftest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laura-regan/Digital-Synthesizer/HEAD/repo/Oscillator_2.0/drivers/Oscillator_v1_0/src/Oscillator_selftest.c -------------------------------------------------------------------------------- /repo/Oscillator_2.0/example_designs/bfm_design/Oscillator_v2_0_tb.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laura-regan/Digital-Synthesizer/HEAD/repo/Oscillator_2.0/example_designs/bfm_design/Oscillator_v2_0_tb.sv -------------------------------------------------------------------------------- /repo/Oscillator_2.0/example_designs/bfm_design/design.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laura-regan/Digital-Synthesizer/HEAD/repo/Oscillator_2.0/example_designs/bfm_design/design.tcl -------------------------------------------------------------------------------- /repo/Oscillator_2.0/example_designs/debug_hw_design/Oscillator_v2_0_hw_test.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laura-regan/Digital-Synthesizer/HEAD/repo/Oscillator_2.0/example_designs/debug_hw_design/Oscillator_v2_0_hw_test.tcl -------------------------------------------------------------------------------- /repo/Oscillator_2.0/example_designs/debug_hw_design/design.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laura-regan/Digital-Synthesizer/HEAD/repo/Oscillator_2.0/example_designs/debug_hw_design/design.tcl -------------------------------------------------------------------------------- /repo/Oscillator_2.0/hdl/Oscillator_v2_0.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laura-regan/Digital-Synthesizer/HEAD/repo/Oscillator_2.0/hdl/Oscillator_v2_0.vhd -------------------------------------------------------------------------------- /repo/Oscillator_2.0/hdl/Oscillator_v2_0_M_AXIS_OUTPUT.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laura-regan/Digital-Synthesizer/HEAD/repo/Oscillator_2.0/hdl/Oscillator_v2_0_M_AXIS_OUTPUT.vhd -------------------------------------------------------------------------------- /repo/Oscillator_2.0/hdl/Oscillator_v2_0_S_AXIS_FREQ_MOD.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laura-regan/Digital-Synthesizer/HEAD/repo/Oscillator_2.0/hdl/Oscillator_v2_0_S_AXIS_FREQ_MOD.vhd -------------------------------------------------------------------------------- /repo/Oscillator_2.0/hdl/Oscillator_v2_0_S_AXIS_PWM.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laura-regan/Digital-Synthesizer/HEAD/repo/Oscillator_2.0/hdl/Oscillator_v2_0_S_AXIS_PWM.vhd -------------------------------------------------------------------------------- /repo/Oscillator_2.0/hdl/Oscillator_v2_0_S_AXI_CTRL.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laura-regan/Digital-Synthesizer/HEAD/repo/Oscillator_2.0/hdl/Oscillator_v2_0_S_AXI_CTRL.vhd -------------------------------------------------------------------------------- /repo/Oscillator_2.0/src/fifo.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laura-regan/Digital-Synthesizer/HEAD/repo/Oscillator_2.0/src/fifo.vhd -------------------------------------------------------------------------------- /repo/Oscillator_2.0/src/oscillator.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laura-regan/Digital-Synthesizer/HEAD/repo/Oscillator_2.0/src/oscillator.vhd -------------------------------------------------------------------------------- /repo/Oscillator_2.0/src/oscillator_wrapper.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laura-regan/Digital-Synthesizer/HEAD/repo/Oscillator_2.0/src/oscillator_wrapper.vhd -------------------------------------------------------------------------------- /repo/Oscillator_2.0/src/sawtooth0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laura-regan/Digital-Synthesizer/HEAD/repo/Oscillator_2.0/src/sawtooth0.txt -------------------------------------------------------------------------------- /repo/Oscillator_2.0/src/sawtooth1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laura-regan/Digital-Synthesizer/HEAD/repo/Oscillator_2.0/src/sawtooth1.txt -------------------------------------------------------------------------------- /repo/Oscillator_2.0/src/sawtooth2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laura-regan/Digital-Synthesizer/HEAD/repo/Oscillator_2.0/src/sawtooth2.txt -------------------------------------------------------------------------------- /repo/Oscillator_2.0/src/sawtooth3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laura-regan/Digital-Synthesizer/HEAD/repo/Oscillator_2.0/src/sawtooth3.txt -------------------------------------------------------------------------------- /repo/Oscillator_2.0/src/sawtooth4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laura-regan/Digital-Synthesizer/HEAD/repo/Oscillator_2.0/src/sawtooth4.txt -------------------------------------------------------------------------------- /repo/Oscillator_2.0/src/sawtooth5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laura-regan/Digital-Synthesizer/HEAD/repo/Oscillator_2.0/src/sawtooth5.txt -------------------------------------------------------------------------------- /repo/Oscillator_2.0/src/sawtooth6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laura-regan/Digital-Synthesizer/HEAD/repo/Oscillator_2.0/src/sawtooth6.txt -------------------------------------------------------------------------------- /repo/Oscillator_2.0/src/sawtooth7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laura-regan/Digital-Synthesizer/HEAD/repo/Oscillator_2.0/src/sawtooth7.txt -------------------------------------------------------------------------------- /repo/Oscillator_2.0/src/sawtooth8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laura-regan/Digital-Synthesizer/HEAD/repo/Oscillator_2.0/src/sawtooth8.txt -------------------------------------------------------------------------------- /repo/Oscillator_2.0/src/sawtooth9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laura-regan/Digital-Synthesizer/HEAD/repo/Oscillator_2.0/src/sawtooth9.txt -------------------------------------------------------------------------------- /repo/Oscillator_2.0/src/sawtooth_wavetable.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laura-regan/Digital-Synthesizer/HEAD/repo/Oscillator_2.0/src/sawtooth_wavetable.vhd -------------------------------------------------------------------------------- /repo/Oscillator_2.0/src/shift_register.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laura-regan/Digital-Synthesizer/HEAD/repo/Oscillator_2.0/src/shift_register.vhd -------------------------------------------------------------------------------- /repo/Oscillator_2.0/src/sine_wavetable.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laura-regan/Digital-Synthesizer/HEAD/repo/Oscillator_2.0/src/sine_wavetable.vhd -------------------------------------------------------------------------------- /repo/Oscillator_2.0/src/tb_oscillator.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laura-regan/Digital-Synthesizer/HEAD/repo/Oscillator_2.0/src/tb_oscillator.vhd -------------------------------------------------------------------------------- /repo/Oscillator_2.0/src/tb_oscillator_ip.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laura-regan/Digital-Synthesizer/HEAD/repo/Oscillator_2.0/src/tb_oscillator_ip.vhd -------------------------------------------------------------------------------- /repo/Oscillator_2.0/src/triangle0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laura-regan/Digital-Synthesizer/HEAD/repo/Oscillator_2.0/src/triangle0.txt -------------------------------------------------------------------------------- /repo/Oscillator_2.0/src/triangle1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laura-regan/Digital-Synthesizer/HEAD/repo/Oscillator_2.0/src/triangle1.txt -------------------------------------------------------------------------------- /repo/Oscillator_2.0/src/triangle2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laura-regan/Digital-Synthesizer/HEAD/repo/Oscillator_2.0/src/triangle2.txt -------------------------------------------------------------------------------- /repo/Oscillator_2.0/src/triangle3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laura-regan/Digital-Synthesizer/HEAD/repo/Oscillator_2.0/src/triangle3.txt -------------------------------------------------------------------------------- /repo/Oscillator_2.0/src/triangle4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laura-regan/Digital-Synthesizer/HEAD/repo/Oscillator_2.0/src/triangle4.txt -------------------------------------------------------------------------------- /repo/Oscillator_2.0/src/triangle5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laura-regan/Digital-Synthesizer/HEAD/repo/Oscillator_2.0/src/triangle5.txt -------------------------------------------------------------------------------- /repo/Oscillator_2.0/src/triangle6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laura-regan/Digital-Synthesizer/HEAD/repo/Oscillator_2.0/src/triangle6.txt -------------------------------------------------------------------------------- /repo/Oscillator_2.0/src/triangle7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laura-regan/Digital-Synthesizer/HEAD/repo/Oscillator_2.0/src/triangle7.txt -------------------------------------------------------------------------------- /repo/Oscillator_2.0/src/triangle8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laura-regan/Digital-Synthesizer/HEAD/repo/Oscillator_2.0/src/triangle8.txt -------------------------------------------------------------------------------- /repo/Oscillator_2.0/src/triangle9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laura-regan/Digital-Synthesizer/HEAD/repo/Oscillator_2.0/src/triangle9.txt -------------------------------------------------------------------------------- /repo/Oscillator_2.0/src/triangle_wavetable.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laura-regan/Digital-Synthesizer/HEAD/repo/Oscillator_2.0/src/triangle_wavetable.vhd -------------------------------------------------------------------------------- /repo/Oscillator_2.0/xgui/Oscillator_v2_0.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laura-regan/Digital-Synthesizer/HEAD/repo/Oscillator_2.0/xgui/Oscillator_v2_0.tcl -------------------------------------------------------------------------------- /sdk/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sdk/Synthesizer/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laura-regan/Digital-Synthesizer/HEAD/sdk/Synthesizer/.cproject -------------------------------------------------------------------------------- /sdk/Synthesizer/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laura-regan/Digital-Synthesizer/HEAD/sdk/Synthesizer/.project -------------------------------------------------------------------------------- /sdk/Synthesizer/Debug/Synthesizer.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laura-regan/Digital-Synthesizer/HEAD/sdk/Synthesizer/Debug/Synthesizer.elf -------------------------------------------------------------------------------- /sdk/Synthesizer/Debug/Synthesizer.elf.size: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laura-regan/Digital-Synthesizer/HEAD/sdk/Synthesizer/Debug/Synthesizer.elf.size -------------------------------------------------------------------------------- /sdk/Synthesizer/src/README.txt: -------------------------------------------------------------------------------- 1 | Empty application. Add your own sources. 2 | -------------------------------------------------------------------------------- /sdk/Synthesizer/src/Synthesizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laura-regan/Digital-Synthesizer/HEAD/sdk/Synthesizer/src/Synthesizer.h -------------------------------------------------------------------------------- /sdk/Synthesizer/src/Xilinx.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laura-regan/Digital-Synthesizer/HEAD/sdk/Synthesizer/src/Xilinx.spec -------------------------------------------------------------------------------- /sdk/Synthesizer/src/lscript.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laura-regan/Digital-Synthesizer/HEAD/sdk/Synthesizer/src/lscript.ld -------------------------------------------------------------------------------- /sdk/Synthesizer/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laura-regan/Digital-Synthesizer/HEAD/sdk/Synthesizer/src/main.c -------------------------------------------------------------------------------- /sdk/Synthesizer_bsp/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laura-regan/Digital-Synthesizer/HEAD/sdk/Synthesizer_bsp/.cproject -------------------------------------------------------------------------------- /sdk/Synthesizer_bsp/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laura-regan/Digital-Synthesizer/HEAD/sdk/Synthesizer_bsp/.project -------------------------------------------------------------------------------- /sdk/Synthesizer_bsp/.sdkproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laura-regan/Digital-Synthesizer/HEAD/sdk/Synthesizer_bsp/.sdkproject -------------------------------------------------------------------------------- /sdk/Synthesizer_bsp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laura-regan/Digital-Synthesizer/HEAD/sdk/Synthesizer_bsp/Makefile -------------------------------------------------------------------------------- /sdk/Synthesizer_bsp/system.mss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laura-regan/Digital-Synthesizer/HEAD/sdk/Synthesizer_bsp/system.mss -------------------------------------------------------------------------------- /sdk/system_wrapper_hw_platform_0/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laura-regan/Digital-Synthesizer/HEAD/sdk/system_wrapper_hw_platform_0/.project -------------------------------------------------------------------------------- /sdk/system_wrapper_hw_platform_0/system.hdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laura-regan/Digital-Synthesizer/HEAD/sdk/system_wrapper_hw_platform_0/system.hdf -------------------------------------------------------------------------------- /src/bd/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/bd/system.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laura-regan/Digital-Synthesizer/HEAD/src/bd/system.tcl -------------------------------------------------------------------------------- /src/constraints/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/constraints/Zedboard-Master.xdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laura-regan/Digital-Synthesizer/HEAD/src/constraints/Zedboard-Master.xdc -------------------------------------------------------------------------------- /src/hdl/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/hdl/axi_sim_package.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laura-regan/Digital-Synthesizer/HEAD/src/hdl/axi_sim_package.vhd -------------------------------------------------------------------------------- /src/hdl/synth_module_sim_package.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laura-regan/Digital-Synthesizer/HEAD/src/hdl/synth_module_sim_package.vhd -------------------------------------------------------------------------------- /src/hdl/tb_adsr_module.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laura-regan/Digital-Synthesizer/HEAD/src/hdl/tb_adsr_module.vhd -------------------------------------------------------------------------------- /src/hdl/tb_lfo_module.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laura-regan/Digital-Synthesizer/HEAD/src/hdl/tb_lfo_module.vhd -------------------------------------------------------------------------------- /src/hdl/tb_mixer_module.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laura-regan/Digital-Synthesizer/HEAD/src/hdl/tb_mixer_module.vhd -------------------------------------------------------------------------------- /src/hdl/tb_moog_filter_module.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laura-regan/Digital-Synthesizer/HEAD/src/hdl/tb_moog_filter_module.vhd -------------------------------------------------------------------------------- /src/hdl/tb_nca_module.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laura-regan/Digital-Synthesizer/HEAD/src/hdl/tb_nca_module.vhd -------------------------------------------------------------------------------- /src/hdl/tb_oscillator_module.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laura-regan/Digital-Synthesizer/HEAD/src/hdl/tb_oscillator_module.vhd -------------------------------------------------------------------------------- /src/hdl/tb_system.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laura-regan/Digital-Synthesizer/HEAD/src/hdl/tb_system.vhd -------------------------------------------------------------------------------- /src/ip/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /system_wrapper.hdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laura-regan/Digital-Synthesizer/HEAD/system_wrapper.hdf --------------------------------------------------------------------------------