Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
E
EtherBone Core
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Projects
EtherBone Core
Commits
ba955bcb
Commit
ba955bcb
authored
7 years ago
by
Mathias Kreider
Browse files
Options
Downloads
Patches
Plain Diff
ebm: fix for use of wrong (old) tx cnt reg for on the fly eth len insertion
parent
06d5cbad
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
hdl/eb_master_core/eb_master_eth_tx.vhd
+1
-1
1 addition, 1 deletion
hdl/eb_master_core/eb_master_eth_tx.vhd
with
1 addition
and
1 deletion
hdl/eb_master_core/eb_master_eth_tx.vhd
+
1
−
1
View file @
ba955bcb
...
@@ -332,7 +332,7 @@ begin
...
@@ -332,7 +332,7 @@ begin
s_tx_stb
<=
s_tx_cyc
;
s_tx_stb
<=
s_tx_cyc
;
-- Flag for Ethertype Length field, high when present on s_tx_dat
-- Flag for Ethertype Length field, high when present on s_tx_dat
s_eth_typ_len_ins
<=
'1'
when
((
(
s_tx_out_cnt
-2
)
=
(
0
+
c_eth_typ_len_pos
)
)
AND
use_fec_i
=
'1'
)
s_eth_typ_len_ins
<=
'1'
when
((
r_output_cnt
=
c_eth_typ_len_pos
)
AND
use_fec_i
=
'1'
)
else
'0'
;
else
'0'
;
...
...
This diff is collapsed.
Click to expand it.
Preview
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!
Save comment
Cancel
Please
register
or
sign in
to comment