OpenCores
URL https://opencores.org/ocsvn/modular_oscilloscope/modular_oscilloscope/trunk

Subversion Repositories modular_oscilloscope

[/] [modular_oscilloscope/] [trunk/] [hdl/] [epp/] [eppwbn_ctrl.vhd] - Diff between revs 41 and 57

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

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.