-
Notifications
You must be signed in to change notification settings - Fork 0
/
chip.yaml
41 lines (35 loc) · 946 Bytes
/
chip.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
# This file doesn't currently do anything and is just an example of the format
# that I wish to use
module:
name: "Chip"
description: "Top-level of design"
parameters:
- name: address width
description: "AHB Address Width in Bits"
value: 8
- name: data_width
description: "AHB Data Width in Bits"
value: 32
interfaces:
- name: clk
description: "System Clock"
bit_width: 1
type: port
direction: input
- name: reset
description: "System Reset"
bit_width: 1
type: port
direction: input
- name: apb
description: "APB Initiator"
type: port
direction: initiator
reference: apb_if
parameters:
- name: data_width
value: data_width
- name: address_width
value: address_width - 2
instances:
-