mirror of
https://github.com/YosysHQ/yosys
synced 2025-04-13 12:28:44 +00:00
5 lines
102 B
Sed
5 lines
102 B
Sed
#!/bin/sed -r
|
|
/^(wire|assign|reg|event)/ d;
|
|
/^(genvar|generate|always|initial)/,/^end/ d;
|
|
s/ reg / /;
|