forked from SiddharthN16/8-Bit-CPU
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathinfo.yaml
66 lines (58 loc) · 2.31 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
66
# Tiny Tapeout project information
project:
title: "8-Bit CPU" # Project title
author: "University of Waterloo - Fall 2024 ECE 298A" # Your name
discord: "" # Your discord username, for communication and automatically assigning you a Tapeout role (optional)
description: "A basic 8-bit CPU design building off the SAP-1" # One line description of what your project does
language: "Verilog" # other examples include SystemVerilog, Amaranth, VHDL, etc
clock_hz: 50000000 # 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_ece298a_8_bit_cpu_top"
# 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_ece298a_8_bit_cpu.v"
- "control_block.v"
- "program_counter.v"
- "accumulator_register.v"
- "add_sub_8bit.v"
- "alu.v"
- "onebitfa.v"
- "register.v"
- "input_mar_register.v"
- "instruction_register.v"
- "dff_mem.v"
# The pinout of your project. Leave unused pins blank. DO NOT delete or add any pins.
pinout:
# Inputs
ui[0]: "prog_in_0"
ui[1]: "prog_in_1"
ui[2]: "prog_in_2"
ui[3]: "prog_in_3"
ui[4]: "prog_in_4"
ui[5]: "prog_in_5"
ui[6]: "prog_in_6"
ui[7]: "prog_in_7"
# Outputs
uo[0]: "output_register_0"
uo[1]: "output_register_1"
uo[2]: "output_register_2"
uo[3]: "output_register_3"
uo[4]: "output_register_4"
uo[5]: "output_register_5"
uo[6]: "output_register_6"
uo[7]: "output_register_7"
# Bidirectional pins
uio[0]: "in_programming"
uio[1]: "out_ready_for_ui"
uio[2]: "out_done_load"
uio[3]: "out_CF"
uio[4]: "out_ZF"
uio[5]: "out_HF"
uio[6]: ""
uio[7]: ""
# Do not change!
yaml_version: 6