source: trunk/monitor.cpp @ 2

Last change on this file since 2 was 2, checked in by guillaumeb, 15 years ago

commit initial

File size: 473 bytes
Line 
1#include "monitor.h"
2#include <iostream>
3
4using namespace std;
5
6void Monitor::count_hit()
7{
8    if (l1hit_signal)
9        l1hits++;
10}
11
12void Monitor::count_miss()
13{
14    if (l1miss_signal)
15        l1misses++;
16}
17
18void Monitor::make_my_report()
19{
20    cout << dec << endl <<
21        "Report : " << endl << 
22        "L1 total requests : " << l1hits + l1misses << endl <<
23        "         hits     : " << l1hits << endl << 
24        "         misses   : " << l1misses << endl;
25
26}
Note: See TracBrowser for help on using the repository browser.