Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
S
sv2v
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
sv2v
f4543872d9da6c02410bc518a4560452c4ea9bdf
f4543872d9da6c02410bc518a4560452c4ea9bdf
Switch branch/tag
sv2v
test
core
inc.v
Find file
Normal view
History
Permalink
inc.v
118 Bytes
Edit
Newer
Older
allow post inc/dec as first stmt in a block
82218848
Zachary Snow
committed
5 years ago
1
2
module
top
;
integer
x
=
0
;
added source trace comments
dd0eb598
Zachary Snow
committed
5 years ago
3
initial
repeat
(
4
)
begin
allow post inc/dec as first stmt in a block
82218848
Zachary Snow
committed
5 years ago
4
5
6
7
x
=
x
+
1
;
$
display
(
x
)
;
end
endmodule