blob: 5090943b632ff7686348f1ceae5448c1c9d652c0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#include "booksim.hpp"
#include "credit.hpp"
Credit::Credit( int max_vcs )
{
vc = new int [max_vcs];
vc_cnt = 0;
tail = false;
id = -1;
}
Credit::~Credit( )
{
delete [] vc;
}
|