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

Subversion Repositories rtf8088

[/] [rtf8088/] [trunk/] [rtl/] [verilog/] [INTA.v] - Blame information for rev 3

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 2 robfinch
//=============================================================================
2
//  INTA: acknowledge interrupt
3
//
4
//
5
//  2009,2010,2012 Robert Finch
6
//  Stratford
7
//  robfinch<remove>opencores.org
8
//
9
//
10
// This source file is free software: you can redistribute it and/or modify 
11
// it under the terms of the GNU Lesser General Public License as published 
12
// by the Free Software Foundation, either version 3 of the License, or     
13
// (at your option) any later version.                                      
14
//                                                                          
15
// This source file is distributed in the hope that it will be useful,      
16
// but WITHOUT ANY WARRANTY; without even the implied warranty of           
17
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the            
18
// GNU General Public License for more details.                             
19
//                                                                          
20
// You should have received a copy of the GNU General Public License        
21
// along with this program.  If not, see <http://www.gnu.org/licenses/>.    
22
//
23
//
24
// - issue two interrupt acknowledge cycles
25
// - one the second cycle load the interrupt number
26
//=============================================================================
27
//
28
INTA0:
29
        begin
30
                cyc_type <= `CT_INTA;
31
                inta_o <= 1'b1;
32
                mio_o <= 1'b0;
33
                lock_o <= 1'b1;
34
                cyc_o <= 1'b1;
35
                stb_o <= 1'b1;
36
                we_o  <= 1'b0;
37
                state <= INTA1;
38
        end
39
INTA1:
40
        if (ack_i) begin
41
                cyc_type <= `CT_PASSIVE;
42
                mio_o <= 1'b1;
43
                stb_o <= 1'b0;
44
                state <= INTA2;
45
        end
46
INTA2:
47
        begin
48
                cyc_type <= `CT_INTA;
49
                mio_o <= 1'b0;
50
                stb_o <= 1'b1;
51
                state <= INTA3;
52
        end
53
INTA3:
54
        if (ack_i) begin
55
                cyc_type <= `CT_PASSIVE;
56
                inta_o <= 1'b0;
57
                mio_o <= 1'b1;
58
                lock_o <= 1'b0;
59
                cyc_o <= 1'b0;
60
                stb_o <= 1'b0;
61
                int_num <= dat_i;
62 3 robfinch
                state <= INT2;
63 2 robfinch
        end

powered by: WebSVN 2.1.0

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