1

Simple question here. Is there a method in Yosys to flatten arrays? i.e.:

wire [1:0] rdata; becomes wire rdata_1; wire rdata_0;

edc
  • 99
  • 1
  • 8

1 Answers1

1

Here's my answer. Not sure when it should be called. After proc seems to work.

proc
opt
splicenets -format __ # <---
[..]
edc
  • 99
  • 1
  • 8