URL
https://opencores.org/ocsvn/modular_oscilloscope/modular_oscilloscope/trunk
Go to most recent revision |
Show entire file |
Details |
Blame |
View Log
Rev 41 |
Rev 57 |
Line 85... |
Line 85... |
-- almacenamiento de Extensibility Request Value (asíncrono)
|
-- almacenamiento de Extensibility Request Value (asíncrono)
|
P_data_store: process(nStrobe, present_state, Data, RST_I, nInit, nSelectIn)
|
P_data_store: process(nStrobe, present_state, Data, RST_I, nInit, nSelectIn)
|
begin
|
begin
|
if (RST_I = '1' or (nInit = '0' and nSelectIn = '0')) then
|
if (RST_I = '1' or (nInit = '0' and nSelectIn = '0')) then
|
ext_req_val <= (others => '0');
|
ext_req_val <= (others => '0');
|
elsif (nStrobe = '0') and present_state = st_negotiation2 then
|
elsif nStrobe = '1' then
|
|
if present_state = st_negotiation2 then
|
ext_req_val <= Data;
|
ext_req_val <= Data;
|
else
|
end if;
|
ext_req_val <= ext_req_val;
|
-- else
|
|
-- ext_req_val <= ext_req_val;
|
end if;
|
end if;
|
end process P_data_store;
|
end process P_data_store;
|
|
|
----------------------------------------------------------------------------------------
|
----------------------------------------------------------------------------------------
|
-- estado siguiente
|
-- estado siguiente
|
© copyright 1999-2025
OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.