Why are Synopsys Fusion Compiler reference methodology scripts fail on a single module verilog: Design has no site rows or site arrays.

Status
Not open for further replies.

unixdaemon

Newbie level 6
Joined
Feb 11, 2023
Messages
14
Helped
0
Reputation
0
Reaction score
1
Trophy points
1
Activity points
137
I am using a simple single module verilog with Synopsys FC-RM_U-2022.12 scripts.

The init_design stage fails:
RM-info: init_design touch file was not created due to potential issues found in "Basic floorplan and design checks" section. Please check RM-error messages in the log.

Earlier in the log the 'Basic floorplan and design checks' failed:

What are "site rows" and "site arrays"? Why do RM scripts expect them? What are "signal terminals", "tracks" and "tap cells"?
How to fix all these errors?

The verilog that I am trying to compile:
module few_logic_ops
#()
(wire1, wire2, wire3, wire4, wire5);
input wire wire1;
input wire wire2;
input wire wire3;
input wire wire4;
output wire wire5;

assign wire5 = (wire1 & wire2) | (wire3 & wire4);
endmodule
 

Status
Not open for further replies.
Cookies are required to use this site. You must accept them to continue using the site. Learn more…