summaryrefslogtreecommitdiffstats
path: root/src/base/wln/wlnRtl.c
diff options
context:
space:
mode:
authorAlan Mishchenko <alanmi@berkeley.edu>2022-02-16 21:23:21 -0800
committerAlan Mishchenko <alanmi@berkeley.edu>2022-02-16 21:23:21 -0800
commit33fb7a809d9f076bd3a9e16585f075a96adb42ea (patch)
tree0ce3db591a443d2c0d8fb2e8475642b7c0dbcd91 /src/base/wln/wlnRtl.c
parentea5648db3f5cc48a2c370be43d8f313db3683967 (diff)
downloadabc-33fb7a809d9f076bd3a9e16585f075a96adb42ea.tar.gz
abc-33fb7a809d9f076bd3a9e16585f075a96adb42ea.tar.bz2
abc-33fb7a809d9f076bd3a9e16585f075a96adb42ea.zip
Experiments with word-level data structures.
Diffstat (limited to 'src/base/wln/wlnRtl.c')
-rw-r--r--src/base/wln/wlnRtl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/base/wln/wlnRtl.c b/src/base/wln/wlnRtl.c
index 97cc9714..fa0f0cd5 100644
--- a/src/base/wln/wlnRtl.c
+++ b/src/base/wln/wlnRtl.c
@@ -145,7 +145,7 @@ Rtl_Lib_t * Wln_ReadSystemVerilog( char * pFileName, char * pTopModule, int fCol
return Rtl_LibReadFile( pFileName, pFileName );
sprintf( Command, "%s -qp \"read_verilog %s%s; hierarchy %s%s; %sproc; write_rtlil %s\"",
Wln_GetYosysName(), fSVlog ? "-sv ":"", pFileName,
- pTopModule ? "-top " : "-auto-top",
+ pTopModule ? "-top " : "",
pTopModule ? pTopModule : "",
fCollapse ? "flatten; " : "",
pFileTemp );