Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions projects/tt_um_s_grundner/commit_id.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"app": "Tiny Tapeout main 131f64ce",
"repo": "https://github.com/s-grundner/LVA-TinyTapeout-Workshop",
"commit": "52d8c629b6aa63ef7fd5f2e635219d066d386e36",
"workflow_url": "https://github.com/s-grundner/LVA-TinyTapeout-Workshop/actions/runs/18180896142",
"app": "Tiny Tapeout main 8132ad6e",
"repo": "https://github.com/s-grundner/LVA-EIC-KV",
"commit": "172521abafc9452591cfd54ccb5b563fadb43b72",
"workflow_url": "https://github.com/s-grundner/LVA-EIC-KV/actions/runs/18856528754",
"project_id": 3056,
"sort_id": 1758725021598
}
128 changes: 65 additions & 63 deletions projects/tt_um_s_grundner/info.yaml
Original file line number Diff line number Diff line change
@@ -1,63 +1,65 @@
# Tiny Tapeout project information
project:
title: "Polyphonic MIDI-Synth" # Project title
author: "Simon Grundner" # Your name
discord: "sm.ino" # Your discord username, for communication and automatically assigning you a Tapeout role (optional)
description: "Decodes MIDI and outputs several square waves to a max of 7 output pins, which can be mixed together externally"
language: "SystemVerilog" # other examples include SystemVerilog, Amaranth, VHDL, etc
clock_hz: 0 # Clock frequency in Hz (or 0 if not applicable)

# How many tiles your design occupies? A single tile is about 167x108 uM.
tiles: "1x1" # Valid values: 1x1, 1x2, 2x2, 3x2, 4x2, 6x2 or 8x2

# Your top module name must start with "tt_um_". Make it unique by including your github username:
top_module: "tt_um_s_grundner"

# List your project's source files here.
# Source files must be in ./src and you must list each source file separately, one per line.
# Don't forget to also update `PROJECT_SOURCES` in test/Makefile.
source_files:
- top_level.v
- global.v
- synth.v
- osc.v
- midi.v
- rx.v
- pwm.v
- counter.v

# The pinout of your project. Leave unused pins blank. DO NOT delete or add any pins.
# This section is for the datasheet/website. Use descriptive names (e.g., RX, TX, MOSI, SCL, SEG_A, etc.).
pinout:
# Inputs
ui[0]: "midi_rx"
ui[1]: ""
ui[2]: ""
ui[3]: ""
ui[4]: ""
ui[5]: ""
ui[6]: ""
ui[7]: ""

# Outputs
uo[0]: "osc_0"
uo[1]: "osc_1"
uo[2]: "osc_2"
uo[3]: "osc_3"
uo[4]: "osc_4"
uo[5]: "osc_5"
uo[6]: "osc_6"
uo[7]: "pwm"

# Bidirectional pins
uio[0]: ""
uio[1]: ""
uio[2]: ""
uio[3]: ""
uio[4]: ""
uio[5]: ""
uio[6]: ""
uio[7]: ""

# Do not change!
yaml_version: 6
# Tiny Tapeout project information
project:
title: "Polyphonic MIDI-Synth" # Project title
author: "Simon Grundner" # Your name
discord: "sm.ino" # Your discord username, for communication and automatically assigning you a Tapeout role (optional)
description: "Decodes MIDI and outputs several square waves to a max of 7 output pins, which can be mixed together externally"
language: "SystemVerilog" # other examples include SystemVerilog, Amaranth, VHDL, etc
clock_hz: 0 # Clock frequency in Hz (or 0 if not applicable)

# How many tiles your design occupies? A single tile is about 167x108 uM.
tiles: "1x1" # Valid values: 1x1, 1x2, 2x2, 3x2, 4x2, 6x2 or 8x2

# Your top module name must start with "tt_um_". Make it unique by including your github username:
top_module: "tt_um_s_grundner"

# List your project's source files here.
# Source files must be in ./src and you must list each source file separately, one per line.
# Don't forget to also update `PROJECT_SOURCES` in test/Makefile.
source_files:
- tt_um_s_grundner.v
- global.v
- synth.v
- osc.v
- note2cnt.v
- midi.v
- rx.v
- pwm.v
- counter.v
- bitcount.v

# The pinout of your project. Leave unused pins blank. DO NOT delete or add any pins.
# This section is for the datasheet/website. Use descriptive names (e.g., RX, TX, MOSI, SCL, SEG_A, etc.).
pinout:
# Inputs
ui[0]: "midi_rx"
ui[1]: ""
ui[2]: ""
ui[3]: ""
ui[4]: ""
ui[5]: ""
ui[6]: ""
ui[7]: ""

# Outputs
uo[0]: "osc_0"
uo[1]: "osc_1"
uo[2]: "osc_2"
uo[3]: "osc_3"
uo[4]: "osc_4"
uo[5]: "osc_5"
uo[6]: "osc_6"
uo[7]: "pwm"

# Bidirectional pins
uio[0]: ""
uio[1]: ""
uio[2]: ""
uio[3]: ""
uio[4]: ""
uio[5]: ""
uio[6]: ""
uio[7]: ""

# Do not change!
yaml_version: 6
Loading