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

Subversion Repositories scarm

[/] [scarm/] [trunk/] [src/] [scIF.h] - Blame information for rev 10

Go to most recent revision | Details | Compare with Previous | View Log

Line No. Rev Author Line
1 5 zhong
///////////////////////////////////////////////////////////////////////////////
2
// This program is free software; you can redistribute it and/or
3
// modify it under the terms of the GNU General Public License
4
// as published by the Free Software Foundation; either version 2
5
// of the License, or (at your option) any later version.
6
//
7
// This program is distributed in the hope that it will be useful,
8
// but WITHOUT ANY WARRANTY; without even the implied warranty of
9
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
10
// GNU General Public License for more details.
11
//
12
// You should have received a copy of the GNU General Public License
13
// along with this program; if not, write to the Free Software
14
// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
15
//////////////////////////////////////////////////////////////////////
16
 
17
///////////////////////////////////////////////////////////////////              
18
//          
19
//  Original Author: Allen Tao Zhong,
20
//  University of Electronic Science and Technology in China
21
//  email: zhong@opencores.org
22
//  info   This is a SystemC ARM model 
23
//   
24
//
25
///////////////////////////////////////////////////////////////////////////////
26
// scIF.h: interface for the scIF class.
27
//
28
//////////////////////////////////////////////////////////////////////
29
 
30
 
31
#include<systemc.h>
32
#include <sc_mslib.h>
33
#include "scTypes.h"
34
#include "scRegisterFile.h"
35
enum ARI {ARI_ALU, ARI_INC, ARI_REG, ARI_NONE};
36
class scIF:public sc_module
37
{
38
public: //ports
39
        sc_in<bool>     in_b_hold;
40
        sc_in<bool> in_b_Clock;
41
        sc_in<bool> in_b_flush;
42
        sc_in<bool> in_b_flush_2;
43
        sc_in<uint32_t>  in_n_PC;
44
                //regs
45
        sc_outmaster<bool>        out_b_RW_pc;// 0-Read  1-Write
46
        sc_outmaster<REGS>     out_REG_pc;
47
        sc_inoutslave<uint32_t> inout_n_Data_pc;
48
        //Get Instruction
49
        sc_outmaster<bool>  out_b_nRW;
50
        sc_outmaster<uint32_t> out_n_Addr;//  address bus
51
        sc_inoutslave<uint32_t>  inout_n_Data; //Instruction bus
52
 
53
        sc_out<uint32_t> out_n_Instruction;
54
        sc_out<uint32_t> out_n_PC;
55
 
56
 
57
public:
58
        void delay3( );
59
        void delay2();
60
        void delay1();
61
        void regs();
62
//      void out();
63
        SC_HAS_PROCESS(scIF);
64
        scIF(const sc_module_name name_):sc_module(name_)
65
        {
66
       m_b_start=true;
67
           m_nIR=0;
68
           m_nPC=0;
69
 
70
       SC_METHOD(entry);
71
           sensitive_pos<<in_b_Clock;
72
           SC_METHOD(delay1);
73
           SC_METHOD(delay2);
74
           SC_METHOD(delay3);
75
 
76
 
77
        }
78
        virtual ~scIF();
79
private:
80
        uint32_t m_nPC;
81
        uint32_t m_nIR;
82
 
83
private:
84
 
85
        bool   m_b_flush;
86
        bool   m_b_start;
87
    sc_event trigger;
88
        sc_event trigger1_if,trigger2_if,trigger3_if;
89
private:
90
 
91
        uint32_t  read_mem_data(uint32_t);
92
        void entry(void);
93
 
94
};

powered by: WebSVN 2.1.0

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