This website works better with JavaScript.
Home
Help
Sign In
tmeissner
/
cryptocores
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
0
Wiki
Activity
Browse Source
correct minor bug
master
Torsten Meissner
13 years ago
parent
b3dde95682
commit
85be1daaf9
1 changed files
with
2 additions
and
2 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+2
-2
aes/rtl/aes_pkg.vhd
+ 2
- 2
aes/rtl/aes_pkg.vhd
View File
@ -146,8 +146,8 @@ package body aes_pkg is
v_a
:
=
a
;
v_b
:
=
b
;
for
index
in
0
to
7
loop
if
(
b
(
0
)
=
'1'
)
then
v_data
:
=
v_data
xor
a
;
if
(
v_
b
(
0
)
=
'1'
)
then
v_data
:
=
v_data
xor
v_
a
;
end
if
;
v_hi_bit_set
:
=
a
(
7
)
;
v_a
:
=
v_a
(
6
downto
0
)
&
'0'
;
Write
Preview
Loading…
Cancel
Save