Hi, Need help with below Yosys related query: Yos...
# sky130
n
Hi, Need help with below Yosys related query: Yosys by default keeps <_instance-ID_> as instance name for all instances, including sequential instances . We need custom RTL names to be set to flops/latches. For eg. for below code snippet,
Copy code
always @(posedge clk )
begin
      d_out <= d_in;
Yosys maps it to (say):DFF_X1 34 It is the default mapping by yosys. Is it possible to get name like "DFF_X1 dout_"?
m
What's your use case?