From: Luke Kenneth Casson Leighton Date: Thu, 18 Jun 2020 09:52:06 +0000 (+0100) Subject: whoops generate core ilang not TestIssuer X-Git-Tag: div_pipeline~329^2~7 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=190ff3576f9997007cfbd6ad41e858ec8b0acf28;p=soc.git whoops generate core ilang not TestIssuer --- diff --git a/src/soc/simple/core.py b/src/soc/simple/core.py index 837e1d06..e52aac64 100644 --- a/src/soc/simple/core.py +++ b/src/soc/simple/core.py @@ -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)