-
Notifications
You must be signed in to change notification settings - Fork 52
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
eDSL: combinational components (#2048)
* Attempt at CombComponent in ast * Attempt to add comb comp to builder * Test comb groups with tuplify * Testing for comb comp * Stray assert * Fix slice helper, use correctly * Use HI instead of 1 * Clean up assertion message * Use cat instead of manually padding * Document cat
- Loading branch information
1 parent
2c19c76
commit a1c354f
Showing
6 changed files
with
319 additions
and
16 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
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
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,32 @@ | ||
{ | ||
"mem1": { | ||
"data": [ | ||
0 | ||
], | ||
"format": { | ||
"is_signed": false, | ||
"numeric_type": "bitnum", | ||
"width": 64 | ||
} | ||
}, | ||
"mem2": { | ||
"data": [ | ||
0 | ||
], | ||
"format": { | ||
"is_signed": false, | ||
"numeric_type": "bitnum", | ||
"width": 32 | ||
} | ||
}, | ||
"mem3": { | ||
"data": [ | ||
0 | ||
], | ||
"format": { | ||
"is_signed": false, | ||
"numeric_type": "bitnum", | ||
"width": 32 | ||
} | ||
} | ||
} |
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,11 @@ | ||
{ | ||
"mem1": [ | ||
17179869186 | ||
], | ||
"mem2": [ | ||
4 | ||
], | ||
"mem3": [ | ||
2 | ||
] | ||
} |
Oops, something went wrong.