forked from omerk/tinytapeout-verilog-test
-
Notifications
You must be signed in to change notification settings - Fork 18
/
info.yaml
38 lines (37 loc) · 1.94 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
---
# TinyTapeout project information
#
# 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.
#
# This will be automatically collected and used to make a datasheet for the chip.
project:
author: "Harry Snell" # Your name
title: "PDM driver" # Project title
description: "5-bit pulse density modulation encoder (aka sigma-delta converter)" # Short description of what your project does
how_it_works: "The pdm_input is registered when write_en is high. The registered input is added to an accummulator on each cycle. The overflow bit of the sum is pdm_output." # Longer description of how the project works
how_to_test: "Set reset low and write_en high, provide a clock (frequency not important) and put a 5-bit number on pdm_input and see how the average value on pdm_out changes" # 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: "Clock source, switches for input. LED, RC circuit, logic analyser or oscilloscope to view output" # Describe any external hardware needed
doc_link: "https://github.com/H-S-S-11/tinytapeout-verilog-test/blob/main/README.md" # URL to longer form documentation (README.md in repository)
clock_hz: 200 # Clock frequency in Hz - arbitrary choice. Can go higher.
language: "Verilog" # other examples include Verilog, Amaranth, VHDL, etc
wokwi_id: 341154068332282450 # the wokwi ID
picture: "" # relative path to a picture in your repository
inputs: # a description of what the inputs do
- clock
- reset
- write_en
- pdm_input[0]
- pdm_input[1]
- pdm_input[2]
- pdm_input[3]
- pdm_input[4]
outputs:
- pdm_out # a description of what the outputs do
- pdm_out_n
- none
- none
- none
- none
- none
- none