Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix PREUNSAT errors in QuickStart Guide Exercise 1 (picorv32) #43

Open
wants to merge 3 commits into
base: master
from
Open
Changes from 1 commit
Commits
File filter...
Filter file types
Jump to…
Jump to file
Failed to load files.

Always

Just for now

Next

Pass --nopresat flag to sby

  • Loading branch information
DonaldKellett committed Aug 18, 2020
commit 35a6553609d8025b6b39dfc5b544d22ecb731961
@@ -562,7 +562,7 @@ def checks_key(check):
for check in checks:
print("%s: %s/status" % (check, check), file=mkfile)
print("%s/status:" % check, file=mkfile)
print("\t%s %s.sby" % (sbycmd, check), file=mkfile)
print("\t%s --nopresat %s.sby" % (sbycmd, check), file=mkfile)
print(".PHONY: %s" % check, file=mkfile)

print("Generated %d checks." % (len(consistency_checks) + len(instruction_checks)))
ProTip! Use n and p to navigate between commits in a pull request.