URL
https://opencores.org/ocsvn/yavga/yavga/trunk
Subversion Repositories yavga
[/] [yavga/] [trunk/] [charmaps/] [charmaps_ROM.vhd_tail] - Rev 37
Go to most recent revision | Compare with Previous | Blame | View Log
-- AUTOMATICALLY GENERATED... STOP
);
begin
s_EN <= i_EN;
p_rom : process (i_clock)
begin
if rising_edge(i_clock) then
if s_EN = '1' then
o_DO <= c_rom(conv_integer(i_ADDR));
end if;
end if;
end process p_rom;
end Behavioral;
Go to most recent revision | Compare with Previous | Blame | View Log