URL
https://opencores.org/ocsvn/open8_urisc/open8_urisc/trunk
[/] [open8_urisc/] [trunk/] [VHDL/] [o8_status_led.vhd] - Diff between revs 189 and 191
Go to most recent revision |
Show entire file |
Details |
Blame |
View Log
Rev 189 |
Rev 191 |
Line 101... |
Line 101... |
if( Reset = Reset_Level )then
|
if( Reset = Reset_Level )then
|
Wr_En <= '0';
|
Wr_En <= '0';
|
Wr_Data_q <= (others => '0');
|
Wr_Data_q <= (others => '0');
|
LED_Mode <= (others => '0');
|
LED_Mode <= (others => '0');
|
Rd_En <= '0';
|
Rd_En <= '0';
|
Rd_Data <= x"00";
|
Rd_Data <= OPEN8_NULLBUS;
|
elsif( rising_edge( Clock ) )then
|
elsif( rising_edge( Clock ) )then
|
Wr_En <= Addr_Match and Wr_Enable;
|
Wr_En <= Addr_Match and Wr_Enable;
|
Wr_Data_q <= Wr_Data(2 downto 0);
|
Wr_Data_q <= Wr_Data(2 downto 0);
|
if( Wr_En = '1' )then
|
if( Wr_En = '1' )then
|
LED_Mode <= Wr_Data_q;
|
LED_Mode <= Wr_Data_q;
|
end if;
|
end if;
|
|
|
Rd_Data <= (others => '0');
|
Rd_Data <= OPEN8_NULLBUS;
|
Rd_En <= Addr_Match and Rd_Enable;
|
Rd_En <= Addr_Match and Rd_Enable;
|
if( Rd_En = '1' )then
|
if( Rd_En = '1' )then
|
Rd_Data <= "00000" & LED_Mode;
|
Rd_Data <= "00000" & LED_Mode;
|
end if;
|
end if;
|
|
|
© copyright 1999-2024
OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.