Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F122645029
drreg.vhd
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Mon, Jul 21, 08:30
Size
538 B
Mime Type
text/x-Algol68
Expires
Wed, Jul 23, 08:30 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
27533238
Attached To
R10499 Energy Analysis of Lightweight AEAD Circuit
drreg.vhd
View Options
library ieee;
use ieee.std_logic_1164.all;
use ieee.numeric_std.all;
use std.textio.all;
use work.all;
entity DRreg is
port (
RegxDN : in std_logic_vector (127 downto 0);
ClkxCI : in std_logic;
ResetxRBI : in std_logic;
RegxDP : out std_logic_vector (127 downto 0));
end entity DRreg;
architecture drr of DRreg is
begin
PROCESS(ClkxCI, ResetxRBI,RegxDN)
BEGIN
IF ClkxCI'event and ClkxCI ='1' then
if ResetxRBI='0' then
RegxDP <= (others=>'0') ;
else
RegxDP <= RegxDN;
end if;
END IF;
END PROCESS ;
end architecture drr;
Event Timeline
Log In to Comment