jgnr
Junior Member level 1
Hello folks,
I'm using the book "Advanced-ASIC-Chip-Synthesis-Using-Synopsys-Design-Compiler-Physical-Compiler-and-Primetime-2nd-E" and i'm trying to do the logical synthesis of some block wich uses other sub-blocks.
So, first of all i'm using a script to synthesize the sub-block that works good.
At the final os this script i'm generating two files:
A .v containig the description mapped to the technology; and
A .db file thats will be used to synthesize the top blocks (that are sub blocks from my top level).
Just to understand i'm presenting an hierarchy:
TOP_LEVEL
TOP_BLOCKS
SUB_BLOCKS
Ok, the script i'm using for the top block is:
When i type the command read_db $syn_db the tool doesn't read them.
The error:
I added the path where the .db are located, try to put in the same folder where i'm oppening dc_shell but nothing works.
Someone may help me?
Thanks.
I'm using the book "Advanced-ASIC-Chip-Synthesis-Using-Synopsys-Design-Compiler-Physical-Compiler-and-Primetime-2nd-E" and i'm trying to do the logical synthesis of some block wich uses other sub-blocks.
So, first of all i'm using a script to synthesize the sub-block that works good.
At the final os this script i'm generating two files:
A .v containig the description mapped to the technology; and
A .db file thats will be used to synthesize the top blocks (that are sub blocks from my top level).
Just to understand i'm presenting an hierarchy:
TOP_LEVEL
TOP_BLOCKS
SUB_BLOCKS
Ok, the script i'm using for the top block is:
Code:
set active_design fulladder_npp_2Bits
set sub_modules {fulladder fulladder_npp}
foreach module $sub_modules {
set syn_db $module.db
read_db $syn_db
}
...
When i type the command read_db $syn_db the tool doesn't read them.
The error:
Error: Cannot read file 'fulladder.db'. (UID-58)
Loaded 0 designs.
Error: Cannot read file 'fulladder_npp.db'. (UID-58)
Loaded 0 designs.
Loaded 0 designs.
Error: Cannot read file 'fulladder_npp.db'. (UID-58)
Loaded 0 designs.
I added the path where the .db are located, try to put in the same folder where i'm oppening dc_shell but nothing works.
Someone may help me?
Thanks.