generated from TinyTapeout/tt06-verilog-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
info.yaml
59 lines (52 loc) · 1.8 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
# Tiny Tapeout project information
project:
title: "8-bit DEM R2R DAC" # Project title
author: "Eric Fogleman" # Your name
discord: "ejfogleman" # Your discord username, for communication and automatically assigning you a Tapeout role (optional)
description: "8-bit segmented mismatch-shaping R2R DAC" # One line description of what your project does
language: "Verilog" # other examples include SystemVerilog, Amaranth, VHDL, etc
clock_hz: 10000000 # 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_ejfogleman_smsdac"
# List your project's source files here. Source files must be in ./src and you must list each source file separately, one per line:
source_files:
- "tt_um_ejfogleman_smsdac.v"
- "ef_smsdac_top.v"
- "ef_smsdac_sync.v"
- "ef_smsdac_reg.v"
- "ef_smsdac_mse.v"
- "ef_smsdac_mse_sb.v"
- "ef_smsdac_lfsr10_7.v"
# The pinout of your project. Leave unused pins blank. DO NOT delete or add any pins.
pinout:
# Inputs
ui[0]: "d_in[0]"
ui[1]: "d_in[1]"
ui[2]: "d_in[2]"
ui[3]: "d_in[3]"
ui[4]: "d_in[4]"
ui[5]: "d_in[5]"
ui[6]: "d_in[6]"
ui[7]: "d_in[8]"
# Outputs
uo[0]: "d_out_0[0]"
uo[1]: "d_out_0[1]"
uo[2]: "d_out_1[0]"
uo[3]: "d_out_1[1]"
uo[4]: "d_out_2[0]"
uo[5]: "d_out_2[1]"
uo[6]: "d_out_3[0]"
uo[7]: "d_out_3[1]"
# Bidirectional pins
uio[0]: "en_enc"
uio[1]: "en_dith"
uio[2]: ""
uio[3]: ""
uio[4]: ""
uio[5]: ""
uio[6]: ""
uio[7]: "ena_and_rst_n"
# Do not change!
yaml_version: 6