-
Notifications
You must be signed in to change notification settings - Fork 60
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add JSON for generating SACI2 waveforms in wavedrom
- Loading branch information
1 parent
ce86e63
commit d452ae0
Showing
1 changed file
with
28 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
|
||
// This is for rendering waveforms with the wavedrom tool | ||
// wavedrom.com/editor.html | ||
|
||
{signal: [['Coordinator', | ||
{name: 'saciSelL', wave: '1.0......|.....|...|.......|..1.'}, | ||
{name: 'saciClk', wave: 'p........|.....|...|.......|....'}, | ||
{name: 'saciCmd', wave: '0..113...|.4...|.0.|.......|....', data: ['ADDR[31:2]', 'DATA[31:0]']}], | ||
{},['Subordinate', | ||
{name: 'saciRsp', wave: '=.0......|.....|...|.113...|.0=.', data: ['High-Z', 'ADDR[31:2]', 'HIGH-Z']}, | ||
] | ||
], | ||
foot:{ | ||
text:'SACIv2 Write', | ||
} | ||
} | ||
|
||
{signal: [['Coordinator', | ||
{name: 'saciSelL', wave: '1.0......|..|........|.....|..1.'}, | ||
{name: 'saciClk', wave: 'p........|..|........|.....|....'}, | ||
{name: 'saciCmd', wave: '0..103...|.0|........|.....|....', data: ['ADDR[31:2]', ]}], | ||
{},['Subordinate', | ||
{name: 'saciRsp', wave: '=.0......|..|..103...|.4...|.0=.', data: ['High-Z', 'ADDR[31:2]', 'DATA[31:0]', 'HIGH-Z']}, | ||
] | ||
], | ||
foot:{ | ||
text:'SACIv2 Read', | ||
}} |