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

Subversion Repositories rtf8088

[/] [rtf8088/] [trunk/] [rtl/] [verilog/] [INW.v] - Blame information for rev 2

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 2 robfinch
// ============================================================================
2
//  INW.v
3
//  - Fetch data from IO.
4
//
5
//
6
//  2009,2010,2012  Robert Finch
7
//  robfinch@opencores.org
8
//  Stratford
9
//
10
//  
11
// This source file is free software: you can redistribute it and/or modify 
12
// it under the terms of the GNU Lesser General Public License as published 
13
// by the Free Software Foundation, either version 3 of the License, or     
14
// (at your option) any later version.                                      
15
//                                                                          
16
// This source file is distributed in the hope that it will be useful,      
17
// but WITHOUT ANY WARRANTY; without even the implied warranty of           
18
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the            
19
// GNU General Public License for more details.                             
20
//                                                                          
21
// You should have received a copy of the GNU General Public License        
22
// along with this program.  If not, see <http://www.gnu.org/licenses/>.    
23
//
24
//
25
//
26
//  Verilog 
27
//
28
// ============================================================================
29
//
30
INW:
31
        begin
32
                `INITIATE_CODE_READ
33
                state <= INW1;
34
        end
35
INW1:
36
        if (ack_i) begin
37
                `TERMINATE_CODE_READ
38
                ea <= {12'h000,dat_i};
39
                state <= INW2;
40
        end
41
INW2:
42
        begin
43
                cyc_type <= `CT_RDIO;
44
                mio_o <= 1'b0;
45
                cyc_o <= 1'b1;
46
                stb_o <= 1'b1;
47
                we_o  <= 1'b0;
48
                adr_o <= ea;
49
                state <= INW3;
50
        end
51
INW3:
52
        if (ack_i) begin
53
                cyc_type <= `CT_PASSIVE;
54
                mio_o <= 1'b1;
55
                stb_o <= 1'b0;
56
                res[7:0] <= dat_i;
57
                state <= INW4;
58
        end
59
INW4:
60
        begin
61
                cyc_type <= `CT_RDIO;
62
                mio_o <= 1'b0;
63
                stb_o <= 1'b1;
64
                adr_o <= ea_inc;
65
                state <= INW5;
66
        end
67
INW5:
68
        if (ack_i) begin
69
                cyc_type <= `CT_PASSIVE;
70
                mio_o <= 1'b1;
71
                cyc_o <= 1'b0;
72
                stb_o <= 1'b0;
73
                we_o  <= 1'b0;
74
                wrregs <= 1'b1;
75
                w <= 1'b1;
76
                rrr <= 3'd0;
77
                res[15:8] <= dat_i;
78
                state <= IFETCH;
79
        end

powered by: WebSVN 2.1.0

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