forked from TinyTapeout/tt08-verilog-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
info.yaml
64 lines (57 loc) · 2.06 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
63
64
# Tiny Tapeout project information
project:
title: "DemoSiine" # Project title
author: "SagarDevAchar" # Your name
discord: "seemebadnekai" # Your discord username, for communication and automatically assigning you a Tapeout role (optional)
description: "A Wavy and Rainbowy TT08 Demoscene Submission" # One line description of what your project does
language: "Verilog" # other examples include SystemVerilog, Amaranth, VHDL, etc
clock_hz: 25000000 # 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_demosiine_sda"
# 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_demosiine_sda.v"
- "vga_controller.v"
- "graphics_engine.v"
- "overlay_creator.v"
- "text_demosiine.v"
- "text_tt08.v"
- "text_sda.v"
- "sine_layer.v"
- "audio_engine.v"
- "freq_synth.v"
# The pinout of your project. Leave unused pins blank. DO NOT delete or add any pins.
pinout:
# Inputs
ui[0]: "Frame Positive / Negative"
ui[1]: "Enable / Disable Little Sine Layer"
ui[2]: "Enable / Disable Big Sine Layer"
ui[3]: "Enable / Disable Overlay"
ui[4]: "Toggle Overlay Style"
ui[5]: "Toggle Background Style"
ui[6]: "Run / Stop Animation"
ui[7]: "Play / Pause Audio"
# Outputs
uo[0]: "Video Red MSB"
uo[1]: "Video Green MSB"
uo[2]: "Video Blue MSB"
uo[3]: "Video V-Sync"
uo[4]: "Video Red LSB"
uo[5]: "Video Green LSB"
uo[6]: "Video Blue LSB"
uo[7]: "Video H-Sync"
# Bidirectional pins
uio[0]: ""
uio[1]: ""
uio[2]: ""
uio[3]: ""
uio[4]: ""
uio[5]: ""
uio[6]: ""
uio[7]: "Audio Output"
# Do not change!
yaml_version: 6