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