whoops use bsv comments not python comments!
authorLuke Kenneth Casson Leighton <lkcl@lkcl.net>
Mon, 25 Jun 2018 07:03:49 +0000 (08:03 +0100)
committerLuke Kenneth Casson Leighton <lkcl@lkcl.net>
Mon, 25 Jun 2018 07:03:49 +0000 (08:03 +0100)
src/bsv/interface_decl.py

index 11834c71f97dc761e09c9e57052cfc003d3db6bf..f45ff86823e67048f938c009302503bf99e7ab59 100644 (file)
@@ -163,7 +163,7 @@ class Interface(object):
             name = self.pname(p['name'])
             typ = self.getifacetype(name.format(""))
             name = name.format(*args)
-            res += "      # declare %s_io, set up as type '%s'\n" % (name, typ)
+            res += "      // declare %s_io, set up as type '%s'\n" % (name, typ)
             res += "      GenericIOType %s_io = GenericIOType{\n" % name
             params = []
             if typ == 'inout':