Print start time after banner and init

This commit is contained in:
Matt Guthaus
2018-12-07 15:50:18 -08:00
parent 428432dacd
commit b15584a821
+4 -4
View File
@@ -26,15 +26,15 @@ if len(args) != 1:
# These depend on arguments, so don't load them until now.
import debug
# Keep track of running stats
start_time = datetime.datetime.now()
print_time("Start",start_time)
init_openram(config_file=args[0], is_unit_test=False)
# Only print banner here so it's not in unit tests
print_banner()
# Keep track of running stats
start_time = datetime.datetime.now()
print_time("Start",start_time)
# Output info about this run
report_status()