mirror of https://github.com/VLSIDA/OpenRAM.git
added another VLSI logo and fixed control port numbering
This commit is contained in:
parent
aadf160ce4
commit
5c4ee911aa
|
|
@ -569,7 +569,7 @@ class lib:
|
||||||
for port in self.all_ports:
|
for port in self.all_ports:
|
||||||
#CSb timings
|
#CSb timings
|
||||||
datasheet.write("{0},{1},{2},{3},{4},{5},{6},{7},{8},".format(
|
datasheet.write("{0},{1},{2},{3},{4},{5},{6},{7},{8},".format(
|
||||||
"CSb{1}[{0}:0]".format(self.sram.word_size - 1, port),
|
"CSb{0}".format(port),
|
||||||
min(list(map(round_time,self.times["setup_times_LH"]))),
|
min(list(map(round_time,self.times["setup_times_LH"]))),
|
||||||
max(list(map(round_time,self.times["setup_times_LH"]))),
|
max(list(map(round_time,self.times["setup_times_LH"]))),
|
||||||
|
|
||||||
|
|
@ -608,7 +608,7 @@ class lib:
|
||||||
|
|
||||||
#WEb timings
|
#WEb timings
|
||||||
datasheet.write("{0},{1},{2},{3},{4},{5},{6},{7},{8},".format(
|
datasheet.write("{0},{1},{2},{3},{4},{5},{6},{7},{8},".format(
|
||||||
"WEb{1}[{0}:0]".format(self.sram.word_size - 1, port),
|
"WEb{0}".format(port),
|
||||||
min(list(map(round_time,self.times["setup_times_LH"]))),
|
min(list(map(round_time,self.times["setup_times_LH"]))),
|
||||||
max(list(map(round_time,self.times["setup_times_LH"]))),
|
max(list(map(round_time,self.times["setup_times_LH"]))),
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -41,7 +41,7 @@ class datasheet():
|
||||||
LVS = 'skipped'
|
LVS = 'skipped'
|
||||||
PEX = 'skipped'
|
PEX = 'skipped'
|
||||||
|
|
||||||
|
self.html +='<img src=' + os.path.abspath(os.environ.get("OPENRAM_HOME")) + '/datasheet/assets/vlsi_logo.png alt="VLSIDA" />'
|
||||||
self.html +='<p style=font-size: 20px;font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;>'+ self.name + '.html' + '</p>'
|
self.html +='<p style=font-size: 20px;font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;>'+ self.name + '.html' + '</p>'
|
||||||
self.html +='<p style=font-size: 20px;font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;>'+ 'DRC: ' + str(DRC) + '</p>'
|
self.html +='<p style=font-size: 20px;font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;>'+ 'DRC: ' + str(DRC) + '</p>'
|
||||||
self.html +='<p style=font-size: 20px;font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;>'+ 'LVS: ' + str(LVS) + '</p>'
|
self.html +='<p style=font-size: 20px;font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;>'+ 'LVS: ' + str(LVS) + '</p>'
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue