-
Notifications
You must be signed in to change notification settings - Fork 0
/
memoryblock.h
160 lines (137 loc) · 3.97 KB
/
memoryblock.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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
#ifndef MEMORYBLOCK_H
#define MEMORYBLOCK_H
#include <dataTypes.h>
#include <string>
#include "helper.h"
#include "exception.h"
using namespace std;
class MemoryBlock {
public:
MemoryBlock() {
maxElements = 100;
init();
}
unsigned getMaxElements() {
return maxElements;
}
struct {
unsigned addr;
u8 value;
bool used;
} block[100];
struct {
unsigned addr;
bool used;
} buserror[100];
void init() {
for(int i = 0; i < maxElements; i++) {
block[i].addr = 0;
block[i].value = 0;
block[i].used = false;
buserror[i].used = false;
buserror[i].addr = 0;
}
pos = 0;
}
void setBusError(unsigned addr) {
for(int i = 0; i < maxElements; i++) {
if(buserror[i].addr == addr) {
return;
}
}
for(int i = 0; i < maxElements; i++) {
if(!buserror[i].used) {
buserror[i].used = true;
buserror[i].addr = addr;
return;
}
}
}
bool isBusError(unsigned addr) {
for(int i = 0; i < maxElements; i++) {
if (buserror[i].used && buserror[i].addr == addr) {
return true;
}
}
return false;
}
u8 read(unsigned addr) {
for(int i = 0; i < maxElements; i++) {
if (block[i].used && block[i].addr == addr) {
return block[i].value;
}
}
return 0;
}
void write(unsigned addr, u8 value) {
for(int i = 0; i < maxElements; i++) {
if (block[i].used && block[i].addr == addr) {
block[i].value = value;
return;
}
}
block[pos].addr = addr;
block[pos].value = value;
block[pos].used = true;
if (++pos == maxElements) {
throw Exception("memory block is too small, increase size");
}
}
u32 readLong(u32 addr) {
u32 Dword = readWord(addr) << 16;
Dword |= readWord(addr+2);
return Dword;
}
u16 readWord(u32 addr) {
return (read(addr & 0xffffff) << 8) | read( (addr+1) & 0xffffff);
}
void writeLong(u32 addr, u32 value) {
writeWord(addr, (value >> 16) & 0xFFFF);
writeWord(addr+2, value & 0xFFFF);
}
void writeWord(u32 addr, u16 value) {
write(addr & 0xffffff, value >> 8);
write((addr+1) & 0xffffff, value & 0xFF);
}
void setError(unsigned blockCount) {
if (blockCount == -1) {
error = " address not found ";
return;
}
error = "adr: " + Helper::convertIntToHexString(block[blockCount].addr) + ", val: " + Helper::convertIntToHexString(block[blockCount].value);
}
string getError() {
return error;
}
static bool compare(MemoryBlock* sampled, MemoryBlock* calced) {
bool found;
int backup;
for(int i = 0; i < sampled->getMaxElements(); i++) {
if (!sampled->block[i].used) {
continue;
}
found = false;
backup = -1;
for(int j = 0; j < calced->getMaxElements(); j++) {
if (sampled->block[i].addr == calced->block[j].addr) {
backup = j;
if (sampled->block[i].value == calced->block[j].value) {
found = true;
}
break;
}
}
if (!found) {
sampled->setError(i);
calced->setError(backup);
return false;
}
}
return true;
}
private:
unsigned pos;
unsigned maxElements;
string error;
};
#endif // CODEBLOCK_H