forked from MatiasBjorling/flashsim
-
Notifications
You must be signed in to change notification settings - Fork 0
/
run_test2.cpp
59 lines (46 loc) · 1.69 KB
/
run_test2.cpp
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
/* Copyright 2009, 2010 Brendan Tauras */
/* run_test2.cpp is part of FlashSim. */
/* FlashSim is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* any later version. */
/* FlashSim is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details. */
/* You should have received a copy of the GNU General Public License
* along with FlashSim. If not, see <http://www.gnu.org/licenses/>. */
/****************************************************************************/
/* Basic test driver
* Brendan Tauras 2010-08-03
*
* driver to create and run a very basic test of writes then reads */
#include "ssd.h"
#define SIZE 10
using namespace ssd;
int main()
{
load_config();
print_config(NULL);
printf("Press ENTER to continue...");
getchar();
printf("\n");
Ssd *ssd = new Ssd();
double result;
double cur_time = 1;
double delta = BUS_DATA_DELAY - 2 > 0 ? BUS_DATA_DELAY - 2 : BUS_DATA_DELAY;
for (int i = 0; i < SIZE; i++, cur_time += delta)
{
/* event_arrive(event_type, logical_address, size, start_time) */
result = ssd -> event_arrive(WRITE, i, 1, cur_time);
result = ssd -> event_arrive(WRITE, i+10240, 1, cur_time);
}
for (int i = 0; i < SIZE; i++, cur_time += delta)
{
/* event_arrive(event_type, logical_address, size, start_time) */
result = ssd -> event_arrive(READ, 1, 1, cur_time);
result = ssd -> event_arrive(READ, i, 1, cur_time);
}
delete ssd;
return 0;
}