Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F122748247
ereg.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, 22:49
Size
467 B
Mime Type
text/x-Algol68
Expires
Wed, Jul 23, 22:49 (2 d)
Engine
blob
Format
Raw Data
Handle
27558590
Attached To
R10499 Energy Analysis of Lightweight AEAD Circuit
ereg.vhd
View Options
library ieee;
use ieee.std_logic_1164.all;
use ieee.numeric_std.all;
use std.textio.all;
use work.all;
entity Ereg is
port (
RegxDN : in std_logic_vector (127 downto 0);
ClkxCI : in std_logic;
EnxSI: in std_logic;
RegxDP : out std_logic_vector (127 downto 0));
end entity Ereg;
architecture er of Ereg is
begin
PROCESS(ClkxCI,EnxSI)
BEGIN
IF EnxSI='0' THEN null;
ELSIF RISING_EDGE(ClkxCI) THEN
RegxDP <= RegxDN;
END IF;
END PROCESS ;
end architecture er;
Event Timeline
Log In to Comment