mirror of https://github.com/VLSIDA/OpenRAM.git
Remove version from OpenRAM. We will go bit git hashes.
This commit is contained in:
parent
d2af68408c
commit
8e91faaccb
|
|
@ -11,9 +11,6 @@ import sys
|
||||||
import re
|
import re
|
||||||
import importlib
|
import importlib
|
||||||
|
|
||||||
# Current version of OpenRAM.
|
|
||||||
VERSION = "Beta"
|
|
||||||
|
|
||||||
USAGE = "Usage: openram.py [options] <config file>\nUse -h for help.\n"
|
USAGE = "Usage: openram.py [options] <config file>\nUse -h for help.\n"
|
||||||
|
|
||||||
# Anonymous object that will be the options
|
# Anonymous object that will be the options
|
||||||
|
|
@ -59,7 +56,7 @@ def parse_args():
|
||||||
parser = optparse.OptionParser(option_list=option_list,
|
parser = optparse.OptionParser(option_list=option_list,
|
||||||
description="Compile and/or characterize an SRAM.",
|
description="Compile and/or characterize an SRAM.",
|
||||||
usage=USAGE,
|
usage=USAGE,
|
||||||
version="OpenRAM v" + VERSION)
|
version="OpenRAM")
|
||||||
|
|
||||||
(options, args) = parser.parse_args(values=OPTS)
|
(options, args) = parser.parse_args(values=OPTS)
|
||||||
# If we don't specify a tech, assume freepdk45.
|
# If we don't specify a tech, assume freepdk45.
|
||||||
|
|
@ -79,7 +76,7 @@ def print_banner():
|
||||||
return
|
return
|
||||||
|
|
||||||
print("|==============================================================================|")
|
print("|==============================================================================|")
|
||||||
name = "OpenRAM Compiler v"+VERSION
|
name = "OpenRAM Compiler"
|
||||||
print("|=========" + name.center(60) + "=========|")
|
print("|=========" + name.center(60) + "=========|")
|
||||||
print("|=========" + " ".center(60) + "=========|")
|
print("|=========" + " ".center(60) + "=========|")
|
||||||
print("|=========" + "VLSI Design and Automation Lab".center(60) + "=========|")
|
print("|=========" + "VLSI Design and Automation Lab".center(60) + "=========|")
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue