54 lines
1.5 KiB
YAML
54 lines
1.5 KiB
YAML
# Tiny Tapeout project information
|
|
project:
|
|
title: "Lights out" # Project title
|
|
author: "Yannick Reiß" # Your name
|
|
discord: "schnick_" # Your discord username, for communication and automatically assigning you a Tapeout role (optional)
|
|
description: "Lights out game." # One line description of what your project does
|
|
language: "Verilog" # other examples include SystemVerilog, Amaranth, VHDL, etc
|
|
clock_hz: 500 # 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_yannickreiss_lights_out"
|
|
|
|
# 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:
|
|
- "lights_out.v"
|
|
|
|
# The pinout of your project. Leave unused pins blank. DO NOT delete or add any pins.
|
|
pinout:
|
|
# Inputs
|
|
ui[0]: "LED 1"
|
|
ui[1]: "LED 2"
|
|
ui[2]: "LED 3"
|
|
ui[3]: "LED 4"
|
|
ui[4]: "LED 5"
|
|
ui[5]: "LED 6"
|
|
ui[6]: "LED 7"
|
|
ui[7]: "LED 8"
|
|
|
|
# Outputs
|
|
uo[0]: "LED 1"
|
|
uo[1]: "LED 2"
|
|
uo[2]: "LED 3"
|
|
uo[3]: "LED 4"
|
|
uo[4]: "LED 5"
|
|
uo[5]: "LED 6"
|
|
uo[6]: "LED 7"
|
|
uo[7]: "LED 8"
|
|
|
|
# Bidirectional pins
|
|
uio[0]: "LED 9"
|
|
uio[1]: "LED 9"
|
|
uio[2]: ""
|
|
uio[3]: ""
|
|
uio[4]: ""
|
|
uio[5]: ""
|
|
uio[6]: ""
|
|
uio[7]: ""
|
|
|
|
# Do not change!
|
|
yaml_version: 6
|