Added optional write_size and wmask.

This commit is contained in:
jsowash
2019-07-03 10:14:15 -07:00
parent 67c6cdf3bb
commit 474ac67af5
2 changed files with 5 additions and 1 deletions
+1
View File
@@ -75,6 +75,7 @@ class control_logic(design.design):
def add_pins(self):
""" Add the pins to the control logic module. """
for pin in self.input_list + ["clk"]:
print(pin)
self.add_pin(pin,"INPUT")
for pin in self.output_list:
self.add_pin(pin,"OUTPUT")