whoops generate core ilang not TestIssuer
authorLuke Kenneth Casson Leighton <lkcl@lkcl.net>
Thu, 18 Jun 2020 09:52:06 +0000 (10:52 +0100)
committerLuke Kenneth Casson Leighton <lkcl@lkcl.net>
Thu, 18 Jun 2020 09:52:06 +0000 (10:52 +0100)
src/soc/simple/core.py

index 837e1d06481011ae77c82d6575058ab156a0a830..e52aac64079f2a3abba53b589e562de8172144a3 100644 (file)
@@ -310,7 +310,7 @@ class NonProductionCore(Elaboratable):
 
 
 if __name__ == '__main__':
-    dut = TestIssuer()
+    dut = NonProductionCore()
     vl = rtlil.convert(dut, ports=dut.ports())
-    with open("test_issuer.il", "w") as f:
+    with open("test_core.il", "w") as f:
         f.write(vl)