mirror of https://github.com/VLSIDA/OpenRAM.git
Merge remote-tracking branch 'private/dev' into dev
This commit is contained in:
commit
9c6af8937d
|
|
@ -136,14 +136,14 @@ class lib:
|
||||||
# set the read and write port as inputs.
|
# set the read and write port as inputs.
|
||||||
self.write_data_bus(port)
|
self.write_data_bus(port)
|
||||||
self.write_addr_bus(port)
|
self.write_addr_bus(port)
|
||||||
if self.sram.write_size:
|
if self.sram.write_size and port in self.write_ports:
|
||||||
self.write_wmask_bus(port)
|
self.write_wmask_bus(port)
|
||||||
self.write_control_pins(port) #need to split this into sram and port control signals
|
# need to split this into sram and port control signals
|
||||||
|
self.write_control_pins(port)
|
||||||
self.write_clk_timing_power(port)
|
self.write_clk_timing_power(port)
|
||||||
|
|
||||||
self.write_footer()
|
self.write_footer()
|
||||||
|
|
||||||
|
|
||||||
def write_footer(self):
|
def write_footer(self):
|
||||||
""" Write the footer """
|
""" Write the footer """
|
||||||
self.lib.write(" }\n") #Closing brace for the cell
|
self.lib.write(" }\n") #Closing brace for the cell
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue