Convert wordline driver to use sized pdriver

This commit is contained in:
Matt Guthaus
2019-01-24 10:20:23 -08:00
parent 091b4e4c62
commit 8f56953af0
3 changed files with 9 additions and 5 deletions
+2 -2
View File
@@ -22,7 +22,7 @@ class wordline_driver_test(openram_test):
# check wordline driver for single port
debug.info(2, "Checking driver")
tx = wordline_driver.wordline_driver(name="wld1", rows=8)
tx = wordline_driver.wordline_driver(name="wld1", rows=8, cols=32)
self.local_check(tx)
# check wordline driver for multi-port
@@ -33,7 +33,7 @@ class wordline_driver_test(openram_test):
factory.reset()
debug.info(2, "Checking driver (multi-port case)")
tx = wordline_driver.wordline_driver(name="wld2", rows=8)
tx = wordline_driver.wordline_driver(name="wld2", rows=8, cols=64)
self.local_check(tx)
globals.end_openram()