diff options
Diffstat (limited to 'ecp5')
-rwxr-xr-x | ecp5/trellis_import.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ecp5/trellis_import.py b/ecp5/trellis_import.py index cf12e775..9a4f30ab 100755 --- a/ecp5/trellis_import.py +++ b/ecp5/trellis_import.py @@ -45,7 +45,8 @@ class BinaryBlobAssembler: print("ref %s %s" % (name, comment)) def s(self, s, comment): - print("str %s" % s) + assert "|" not in s + print("str |%s| %s" % (s, comment)) def u8(self, v, comment): if comment is None: |