Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
sharma53
post_silicon_protocol_lts
Commits
c74f1696
Commit
c74f1696
authored
Jul 12, 2016
by
Debjit Pal
Browse files
Fixing a strobing bug in mcu_ncu_vld to prevent loop
parent
4139fa97
Changes
1
Hide whitespace changes
Inline
Side-by-side
monitors/other_monitors/ncu_proto_mon.v
View file @
c74f1696
...
...
@@ -649,7 +649,7 @@ end
always
@
(
posedge
(
iol2clk
&&
enabled
&&
mcu0_ncu_vld_strobe
))
begin
if
(
mcu0_ncu_vld
)
if
(
!
mcu0_ncu_vld
)
mcu0_ncu_vld_strobe
=
1'b0
;
end
...
...
@@ -740,7 +740,7 @@ end
always
@
(
posedge
(
iol2clk
&&
enabled
&&
mcu1_ncu_vld_strobe
))
begin
if
(
mcu1_ncu_vld
)
if
(
!
mcu1_ncu_vld
)
mcu1_ncu_vld_strobe
=
1'b0
;
end
...
...
@@ -832,7 +832,7 @@ end
always
@
(
posedge
(
iol2clk
&&
enabled
&&
mcu2_ncu_vld_strobe
))
begin
if
(
mcu2_ncu_vld
)
if
(
!
mcu2_ncu_vld
)
mcu2_ncu_vld_strobe
=
1'b0
;
end
...
...
@@ -923,7 +923,7 @@ end
always
@
(
posedge
(
iol2clk
&&
enabled
&&
mcu3_ncu_vld_strobe
))
begin
if
(
mcu3_ncu_vld
)
if
(
!
mcu3_ncu_vld
)
mcu3_ncu_vld_strobe
=
1'b0
;
end
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment