-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #274 from os-fpga/partial_support_EDA-1435
Partially support RAM inference for this case
- Loading branch information
Showing
2 changed files
with
21 additions
and
2 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 |
---|---|---|
@@ -1,16 +1,29 @@ | ||
create_design asym_ram_tdp_write_first_dc | ||
target_device GEMINI_COMPACT_82x68 | ||
target_device GEMINI_COMPACT_10x8 | ||
add_include_path ./rtl | ||
add_library_path ./rtl | ||
add_library_ext .v .sv | ||
add_design_file ./rtl/asym_ram_tdp_write_first_dc.v | ||
set_top_module asym_ram_tdp_write_first_dc | ||
|
||
# The surelog parser converts blocking to non-blocking, | ||
# Enabling RAM inference | ||
parser_type surelog | ||
|
||
analyze | ||
|
||
synthesize delay | ||
|
||
setup_lec_sim | ||
|
||
simulate icarus gate | ||
|
||
packing | ||
global_placement | ||
place | ||
route | ||
|
||
simulate icarus pnr | ||
|
||
sta | ||
power | ||
bitstream |
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