generated from TinyTapeout/tt09-analog-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
info.yaml
65 lines (56 loc) · 1.85 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
65
# Tiny Tapeout project information
project:
title: "tt_um_Digi_OTA_" # Project title
author: "Abner" # Your name
discord: "deftbuzzard2997" # Your discord username, for communication and automatically assigning you a Tapeout role (optional)
description: "Low_Voltage Operational Transconductance amplifier" # One line description of what your project does
language: "Analog" # other examples include Verilog, Amaranth, VHDL, etc
clock_hz: 10000 # 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 for analog projects: 1x2, 2x2
# How many analog pins does your project use?
analog_pins: 2 # Valid values: 0 to 6
uses_3v3: false # Set to true if your project uses 3.3V (VAPWR) in addition to 1.8V (VDPWR)
# Your top module name must start with "tt_um_". Make it unique by including your github username:
top_module: "tt_um_Digi_OTA_"
# 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_Digi_OTA_.v"
# The pinout of your project. Leave unused pins blank. DO NOT delete or add any pins.
pinout:
# Inputs
ui[0]: "0"
ui[1]: "0"
ui[2]: "0"
ui[3]: "0"
ui[4]: "0"
ui[5]: "0"
ui[6]: "0"
ui[7]: "0"
# Outputs
uo[0]: "0"
uo[1]: "0"
uo[2]: "0"
uo[3]: "0"
uo[4]: "0"
uo[5]: "0"
uo[6]: "0"
uo[7]: "0"
# Bidirectional pins
uio[0]: "0"
uio[1]: "0"
uio[2]: "0"
uio[3]: "0"
uio[4]: "0"
uio[5]: "0"
uio[6]: "0"
uio[7]: "0"
# Analog pins - make sure to also set "analog_pins" above, else the pins won't be connected
ua[0]: "Vip"
ua[1]: "Vin"
ua[2]: "Out"
ua[3]: "0"
ua[4]: "0"
ua[5]: "0"
# Do not change!
yaml_version: 6