-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinfo.yaml
44 lines (42 loc) · 1.89 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
---
project:
source_files:
- toplevel_chip.v
- chip.sv
- main.sv
- library.sv
- game.sv
- random.sv
- spi.sv
top_module: "toplevel_chip"
# As everyone will have access to all designs, try to make it easy for someone new to your design to know what
# it does and how to operate it.
#
# Here is an example: https://github.com/mattvenn/tinytapeout_m_segments/blob/main/info.yaml
#
# This info will be automatically collected and used to make a datasheet for the chip.
documentation:
author: "Spencer Li" # Your name
discord: "@bonkedbygod" # Your discord handle
title: "PianoTiles18224" # Project title
description: "Small hand held piano tiles on a chip" # Short description of what your project does
how_it_works: "Press any button to play, press buttons for the tiles, don't lose" # Longer description of how the project works
how_to_test: "Play the game!" # Instructions on how someone could test your project, include things like what buttons do what and how to set the clock if needed
external_hw: "SSD1306 SPI OLED Display and 4 Buttons" # Describe any external hardware needed
language: "systemverilog" # other examples include Verilog, Amaranth, VHDL, etc
doc_link: "" # URL to longer form documentation, eg the README.md in your repository
clock_hz: 25000000 # Clock frequency in Hz (if required)
picture: "" # relative path to a picture in your repository
inputs: # a description of what the inputs do
- 0 input buttons
- 1 input buttons
- 2 input buttons
- 3 input buttons
- 4 input buttons
- 5 input buttons
outputs:
- 11 Oled Spi Clock (clk)
- 10 Oled Spi Master In Slave Out (mosi)
- 9 Oled Spi Data/Command (dc)
- 8 Oled Spi Reset Low (res_n)
- 7 Oled Spi Chip Select Low (cs_n)