intMAN  version 0.2_20130422
Signals | Libraries | Use Clauses | Processes
arch Architecture Reference

Architecture of the unit for detection/latch of an interrupt request (inner structure) More...

Processes

PROCESS_1  ( clk )
 process for detection/capturing of an arriving interrupt
newint_latch  ( reset , SIG_new_int )
 process for latching the pending interrupt request

Libraries

IEEE 

Use Clauses

STD_LOGIC_1164 
NUMERIC_STD 
intMAN_package  Package <intMAN_package>

Signals

signal_d  STD_LOGIC
 D-storage.
SIG_new_int  STD_LOGIC
 new int line
SIG_new_int_latch  STD_LOGIC
 new int flag/latch

Detailed Description

Architecture of the unit for detection/latch of an interrupt request (inner structure)

Definition at line 36 of file int_buf_in.vhd.

Member Function Documentation

newint_latch (   reset ,
  SIG_new_int  
)
Process

process for latching the pending interrupt request

Definition at line 66 of file int_buf_in.vhd.

00066   newint_latch : process (reset , SIG_new_int ) 00067   begin 00068   if (SIG_new_int = ' 1 ') then 00069   SIG_new_int_latch <= ' 1 '; 00070   elsif (reset = ' 1 ') then 00071   SIG_new_int_latch <= ' 0 '; 00072   end if; 00073   end process;
PROCESS_1 (   clk  
)
Process

process for detection/capturing of an arriving interrupt

Definition at line 51 of file int_buf_in.vhd.

00051   process(clk ) 00052   begin 00053   if (clk 'event and clk = ' 1 ') then -- rising edge 00054   signal_d <= int_in ; 00055   end if; 00056   end process;

Member Data Documentation

IEEE
Library

Definition at line 82 of file int_buf_in.vhd.

intMAN_package
Package

Definition at line 85 of file int_buf_in.vhd.

NUMERIC_STD
Package

Definition at line 84 of file int_buf_in.vhd.

SIG_new_int STD_LOGIC
Signal

new int line

Definition at line 40 of file int_buf_in.vhd.

SIG_new_int_latch STD_LOGIC
Signal

new int flag/latch

Definition at line 42 of file int_buf_in.vhd.

signal_d STD_LOGIC
Signal

D-storage.

Definition at line 38 of file int_buf_in.vhd.

STD_LOGIC_1164
Package

Definition at line 83 of file int_buf_in.vhd.


The documentation for this class was generated from the following file:
© 2013 Josef Strnadel (email, web), Faculty of Information Technology, Brno University of Technology (web)