B
beginner_vhdl
Guest
hi everybody,
i want to use files as input and an output for my vhdl program
for example as a program i have :
library IEEE;
use IEEE.STD_LOGIC_1164.ALL;
use IEEE.STD_LOGIC_ARITH.ALL;
use IEEE.STD_LOGIC_UNSIGNED.ALL;
entity entier is
Port ( clk : in STD_LOGIC;
en : in STD_LOGIC_VECTOR (7 downto 0);
sor : out STD_LOGIC_VECTOR (7 downto 0)
);
end entier ;
architecture Behavioral of entier is
begin
sor <= en;
end Behavioral;
------------------------------------------------------------------------------
i want that my inputs ( en ) are from a file and my outputs saved
into a file ( sor)
thank you for your help
i want to use files as input and an output for my vhdl program
for example as a program i have :
library IEEE;
use IEEE.STD_LOGIC_1164.ALL;
use IEEE.STD_LOGIC_ARITH.ALL;
use IEEE.STD_LOGIC_UNSIGNED.ALL;
entity entier is
Port ( clk : in STD_LOGIC;
en : in STD_LOGIC_VECTOR (7 downto 0);
sor : out STD_LOGIC_VECTOR (7 downto 0)
);
end entier ;
architecture Behavioral of entier is
begin
sor <= en;
end Behavioral;
------------------------------------------------------------------------------
i want that my inputs ( en ) are from a file and my outputs saved
into a file ( sor)
thank you for your help