about summary refs log tree commit diff stats
path: root/sandbox/007-sandbox-delete.mu
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2018-09-28 23:08:27 -0700
committerKartik Agaram <vc@akkartik.com>2018-09-29 10:20:13 -0700
commit630433cd9cb97cf71d24bfc8fab6fb54ce40382a (patch)
treecf4cffae8599489e5efcbc18b965f804d5e3a8e8 /sandbox/007-sandbox-delete.mu
parentfd0cf1cd07ce01c3d6fe709d55b60ff9d1d5d44f (diff)
downloadmu-630433cd9cb97cf71d24bfc8fab6fb54ce40382a.tar.gz
4614 - redo simulated RAM
Now simulated 'Memory' isn't just a single flat array. Instead it knows
about segments and VMAs.

The code segment will always be first, and the data/heap segment will always
be second. The brk() syscall knows about the data segment.

One nice side-effect is that I no longer need to mess with Memory initialization
regardless of where I place my segments.
Diffstat (limited to 'sandbox/007-sandbox-delete.mu')
0 files changed, 0 insertions, 0 deletions
es.el?id=b7db8f21d3b1cc91940bda23adf03c17d36adb52'>b7db8f2 ^
d0db566 ^
f4fe800 ^






da23b75 ^

54938c7 ^



78903f9 ^

47c30f0 ^
f4fe800 ^



d0db566 ^
2cdb31b ^
55318c9 ^
2cdb31b ^













55318c9 ^





2cdb31b ^


82a42c2 ^

4704a12 ^
82a42c2 ^


f4fe800 ^
82a42c2 ^
d0db566 ^
f972147 ^
a020f45 ^




f4fe800 ^
f972147 ^
a020f45 ^


2281d01 ^









d0db566 ^

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