-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest_data.json
More file actions
54 lines (53 loc) · 1.05 KB
/
test_data.json
File metadata and controls
54 lines (53 loc) · 1.05 KB
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
{
"default_map": {
"bank2": {
"region_type": "memory"
},
"bank1": {
"region_type": "register_block",
"register_block_type" : "basic_registers"
},
"bank3": {
"region_type": "register_block",
"register_block_type" : "basic_registers"
}
},
"register_blocks": {
"basic_registers": {
"registers": {
"status": {
"fields" : {
"field1" : {
"lsb" : 5,
"width" : 4
},
"status2" : {
"lsb" : 0,
"width" : 1
},
"status3" : {
"lsb" : 10,
"width" : 5
}
}
},
"ctrl": {
"fields": {
"start" : {
"lsb" : 0,
"width" : 1
},
"stop" : {
"lsb" : 1,
"width" : 1
},
"reset" : {
"lsb" : 2,
"width" : 1
}
}
}
}
}
}
}