-
Notifications
You must be signed in to change notification settings - Fork 0
/
info.yaml
62 lines (55 loc) · 1.89 KB
/
info.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
# Tiny Tapeout project information
project:
# Project title
title: "Super Mario Tune on A Piezo Speaker"
# Your name
author: "Milosch Meriac"
# Your discord username, for communication and automatically assigning you a Tapeout role (optional)
discord: "foolsdelight"
# One line description of what your project does
description: "Plays Super Mario Tune over a Piezo Speaker connected across uio_out[1:0]"
# other examples include SystemVerilog, Amaranth, VHDL, etc
language: "Verilog"
# Clock frequency in Hz (or 0 if not applicable)
clock_hz: 100000
# 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_meriac_play_tune"
# 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:
- player.v
- tune.v
# The pinout of your project. Leave unused pins blank. DO NOT delete or add any pins.
pinout:
# Inputs
ui[0]: "input pin 0"
ui[1]: "input pin 1"
ui[2]: "input pin 2"
ui[3]: "input pin 3"
ui[4]: "input pin 4"
ui[5]: "input pin 5"
ui[6]: "input pin 6"
ui[7]: "input pin 7"
# Outputs
uo[0]: "ui[0]"
uo[1]: "ui[1]"
uo[2]: "ui[2]"
uo[3]: "ui[3]"
uo[4]: "ui[4]"
uo[5]: "ui[5]"
uo[6]: "ui[6]"
uo[7]: "ui[7]"
# Bidirectional pins
uio[0]: "piezo_speaker_p (uio_out[0])"
uio[1]: "piezo_speaker_n (uio_out[1])"
uio[2]: "GND"
uio[3]: "GND"
uio[4]: "GND"
uio[5]: "GND"
uio[6]: "GND"
uio[7]: "piezo_speaker_n (uio_out[7])"
# Do not change!
yaml_version: 6