generated from TinyTapeout/tt10-verilog-template
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathinfo.yaml
More file actions
77 lines (69 loc) · 2.09 KB
/
info.yaml
File metadata and controls
77 lines (69 loc) · 2.09 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
# Tiny Tapeout project information
project:
title: "UW ASIC - Optimized Dino" # Project title
author: "University of Waterloo ASIC Design Team" # Your name
discord: "" # Your discord username, for communication and automatically assigning you a Tapeout role (optional)
description: "Dino game, but only 2 tiles!" # One line description of what your project does
language: "Verilog" # other examples include SystemVerilog, Amaranth, VHDL, etc
clock_hz: 25175000 # Clock frequency in Hz (or 0 if not applicable)
# 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_uwasic_dinogame"
# 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:
- "audio_interface.v"
- "bg_line.v"
- "bg_object.v"
- "bg_object_rom.v"
- "bg_render.v"
- "debounce.v"
- "dino_game_top.v"
- "dino_render.v"
- "dino_rom.v"
- "gamepad_pmod.v"
- "game_over_sound_player.v"
- "graphics_top.v"
- "hvsync_generator.v"
- "jump_sound_player.v"
- "lfsr.v"
- "obs_render.v"
- "obs_rom.v"
- "obstacles.v"
- "player_controller.v"
- "player_physics.v"
- "score.v"
- "score_render.v"
# The pinout of your project. Leave unused pins blank. DO NOT delete or add any pins.
pinout:
# Inputs
ui[0]: "ui0"
ui[1]: "ui1"
ui[2]: "ui2"
ui[3]: "ui3"
ui[4]: "ui4"
ui[5]: "ui5"
ui[6]: "ui6"
ui[7]: "ui7"
# Outputs
uo[0]: "uo0"
uo[1]: "uo1"
uo[2]: "uo2"
uo[3]: "uo3"
uo[4]: "uo4"
uo[5]: "uo5"
uo[6]: "uo6"
uo[7]: "uo7"
# Bidirectional pins
uio[0]: "uio0"
uio[1]: "uio1"
uio[2]: "uio2"
uio[3]: "uio3"
uio[4]: "uio4"
uio[5]: "uio5"
uio[6]: "uio6"
uio[7]: "uio7"
# Do not change!
yaml_version: 6