base and dummy array alignment in sky130

This commit is contained in:
Jacob Walker
2023-03-30 11:30:50 -07:00
parent d7ac26a053
commit 7309af7e29
4 changed files with 273 additions and 32 deletions
+1 -1
View File
@@ -24,7 +24,7 @@ class rom_array_test(openram_test):
debug.info(2, "Testing 4x4 array for rom cell")
data = [[1, 1, 1, 1], [1, 1, 1, 1], [1, 0, 1, 1], [1, 1, 1, 0]]
data = [[1, 0, 0, 0], [0, 1, 1, 1], [1, 0, 1, 1], [1, 1, 0, 1]]
a = factory.create(module_type="rom_base_array", cols=4, rows=4, bitmap=data)
self.local_check(a)