Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Please give modified tcl file. Original tcl file: # Elaborate the FIFO design elaborate fifo1 current_design fifo1 link # write clock with the clock period
Please give modified tcl file.
Original tcl file:
# Elaborate the FIFO design
elaborate fifo1
current_design fifo1
link
# write clock with the clock period of 1 and with duty cycle of 50%
create_clock -name "wclk" -period 1.0 -waveform {0.0 0.5} wclk
# read clock with the clock period of .5 and with duty cycle of 50%
create_clock -name "rclk" -period 0.50 -waveform {0.0 0.25} rclk
#set_wire_load_mode enclosed
#set_wire_load_model -name 8000
set_operating_conditions ss0p95v125c_2p25v
#compile map the sequential cell exactly as in the rtl
compile -exact_map
echo check_timing command
check_timing -include {no_driving_cell no_input_delay partial_input_delay unconstrained_endpoints }
echo report_qor command
report_qor
echo report_constraint command (PWR-6, PWR-414, PWR-415 Warnings are ok)
report_constraint -all_violators -verbose
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started