-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathtop.h
40 lines (32 loc) · 986 Bytes
/
top.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
#ifndef TOP_H
#define TOP_H
#include "initiator1.h"
#include "initiator2.h"
#include "bus.h"
#include "target.h"
// *****************************************************************************************
// Top-level module instantiates 2 initiators, a bus, and 4 memories
// *****************************************************************************************
SC_MODULE(Top)
{
Initiator1* init1;
Initiator2* init2;
Bus<2,4>* bus;
Memory* memory[4];
SC_CTOR(Top)
{
init1 = new Initiator1("init1");
init2 = new Initiator2("init2");
bus = new Bus<2,4> ("bus");
init1->socket.bind( *(bus->targ_socket[0]) );
init2->socket.bind( *(bus->targ_socket[1]) );
for (int i = 0; i < 4; i++)
{
char txt[20];
sprintf(txt, "memory_%d", i);
memory[i] = new Memory(txt);
( *(bus->init_socket[i]) ).bind( memory[i]->socket );
}
}
};
#endif