-
Notifications
You must be signed in to change notification settings - Fork 1
/
info.yaml
57 lines (51 loc) · 1.27 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
---
# information
project:
title: "Pong"
description: "A hardware implementation of Pong"
picture: docs/pong.jpg
author: "Erik van Zijst"
github: https://github.com/erikvanzijst/wrapped_pong.git
license: LICENSE
# test within caravel
caravel_test:
recipe: "coco_test"
directory: "caravel_test"
id: 4
module_name: "wrapped_pong"
instance_name: "pong_wrapper"
# module test
module_test:
recipe: "all"
directory: "pong"
makefile: "Makefile"
# run the wrapper formal proof
wrapper_proof:
directory: "."
sby: "properties.sby"
# openlane config, used in case I need to re-harden
openlane:
config: "config.tcl"
# source required for various configs and module instantiation
source:
- wrapper.v
- pong/src/debounce.v
- pong/src/rot_encoder.v
- pong/src/clkdiv.v
- pong/src/screen.v
- pong/src/game.v
- pong/src/trig.v
- pong/src/paddle.v
- pong/src/ball.v
- pong/src/score.v
- pong/src/rnd.v
- pong/src/pong.v
- pong/src/vga.v
- pong/src/vgasync.v
- pong/src/tone.v
# gds - check size = 300x300, nothing on metal 5, do a DRC, check 141 tristate buffers, check LVS
gds:
directory: "gds"
gds_filename: "wrapped_pong.gds"
lvs_filename: "wrapped_pong.lvs.powered.v"
lef_filename: "wrapped_pong.lef"