Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
B-ASIC - Better ASIC Toolbox
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Computer Engineering
B-ASIC - Better ASIC Toolbox
Merge requests
!362
Last code formatting fixes
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Last code formatting fixes
finalfixes
into
master
Overview
0
Commits
1
Pipelines
1
Changes
5
Merged
Oscar Gustafsson
requested to merge
finalfixes
into
master
1 year ago
Overview
0
Commits
1
Pipelines
1
Changes
5
Expand
0
0
Merge request reports
Viewing commit
d1af9c2e
Show latest version
5 files
+
39
−
38
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
5
Search (e.g. *.vue) (Ctrl+P)
d1af9c2e
Last code formatting fixes
· d1af9c2e
Oscar Gustafsson
authored
1 year ago
b_asic/codegen/vhdl/common.py
+
1
−
1
Options
@@ -24,7 +24,7 @@ def b_asic_preamble(f: TextIOWrapper):
try
:
process
=
Popen
([
'
git
'
,
'
rev-parse
'
,
'
--short
'
,
'
HEAD
'
],
stdout
=
PIPE
)
git_commit_id
=
process
.
communicate
()[
0
].
decode
(
'
utf-8
'
).
strip
()
except
:
except
:
# noqa: E722
pass
vhdl
.
write_lines
(
f
,
Loading