Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F10707507
counter2.v
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Size
214 B
Referenced Files
None
Subscribers
None
counter2.v
View Options
module
counter
(
clk
,
rst
,
cnt
);
input
wire
clk
;
input
wire
rst
;
output
reg
signed
[
1
:
0
]
cnt
;
always
@(
posedge
clk
)
begin
if
(
rst
)
cnt
<=
2
'
sd0
;
else
begin
cnt
<=
cnt
+
2
'
sd1
;
end
end
endmodule
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Sun, May 31, 4:53 PM (1 d, 16 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
329585
Default Alt Text
counter2.v (214 B)
Attached To
Mode
R231 SoC_I-Edge_yosys_nem_optimization
Attached
Detach File
Event Timeline
Log In to Comment