Added write_size to test 16 and added a newline to Verilog with no wmask for test 25.

This commit is contained in:
jsowash
2019-07-05 15:55:03 -07:00
parent ad9193ad5a
commit 24bfaa3b76
3 changed files with 6 additions and 4 deletions
+2
View File
@@ -28,6 +28,8 @@ class verilog:
self.vf.write("// Word size: {0}\n".format(self.word_size))
if self.wmask_enabled:
self.vf.write("// Write size: {0}\n\n".format(self.write_size))
else:
self.vf.write("\n")
self.vf.write("module {0}(\n".format(self.name))
for port in self.all_ports: