-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathinfo.yaml
More file actions
55 lines (48 loc) · 1.57 KB
/
info.yaml
File metadata and controls
55 lines (48 loc) · 1.57 KB
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
# Tiny Tapeout project information
project:
title: "VGA Drop (audio/visual demo)" # Project title
author: "ReJ aka Renaldas Zioma, eriQue aka Erik Hemming, Matthias Kampa"
discord: "rzioma" # Your discord username, for communication and automatically assigning you a Tapeout role (optional)
description: "Tiny 8 part Megademo! TBL^Nesnausk^SonikClique"
language: "Verilog"
clock_hz: 25200000 # Clock frequency in Hz for VGA timing
# How many tiles your design occupies? A single tile is about 167x108 uM.
tiles: "1x2" # 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_rejunity_vga_test01"
# 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:
- "project.v"
# The pinout of your project. Leave unused pins blank. DO NOT delete or add any pins.
pinout:
# Inputs
ui[0]: ""
ui[1]: ""
ui[2]: ""
ui[3]: ""
ui[4]: ""
ui[5]: ""
ui[6]: ""
ui[7]: ""
# Outputs
uo[0]: "R1"
uo[1]: "G1"
uo[2]: "B1"
uo[3]: "VSYNC"
uo[4]: "R0"
uo[5]: "G0"
uo[6]: "B0"
uo[7]: "HSYNC"
# Bidirectional pins
uio[0]: "Audio (PWM)"
uio[1]: "Audio (PWM)"
uio[2]: "Audio (PWM)"
uio[3]: "Audio (PWM)"
uio[4]: "Audio (PWM)"
uio[5]: "Audio (PWM)"
uio[6]: "Audio (PWM)"
uio[7]: "Audio (PWM)"
# Do not change!
yaml_version: 6