about summary refs log tree commit diff stats
path: root/apps/survey_baremetal
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2021-01-24 19:38:10 -0800
committerKartik Agaram <vc@akkartik.com>2021-01-24 20:16:27 -0800
commit3844651e49258a400ed81273f7cd620a14264386 (patch)
treeec050e286314f49945dd0b3f97e4aa839b1a67f5 /apps/survey_baremetal
parent1c77be68d75d8134bea72305057eb9ce523e9748 (diff)
downloadmu-3844651e49258a400ed81273f7cd620a14264386.tar.gz
7559 - reorganize sectors built in raw hex
This was tedious for three reasons beyond the usual one of having to
track and update offsets several time while I debug:
  - The Bochs troubles of the previous commit kept polluting my brain
    even though they were irrelevant.
  - I had to keep some changes locally to allow myself to use Bochs,
    which polluted my working directory.
  - I had to travel the long way to the realization that I'm not
    actually initializing the stack anywhere. BIOS was starting my stack
    off at 0x10000, which was promptly clobbered by my second read from
    disk.

The good news: while I'm here I grow the interrupt descriptor table. So
I don't have to go through this exercise when I get back to supporting
the mouse.
Diffstat (limited to 'apps/survey_baremetal')
-rwxr-xr-xapps/survey_baremetalbin51197 -> 51197 bytes
1 files changed, 0 insertions, 0 deletions
diff --git a/apps/survey_baremetal b/apps/survey_baremetal
index 6c254711..3bddb653 100755
--- a/apps/survey_baremetal
+++ b/apps/survey_baremetal
Binary files differ
@akkartik.com> 2016-12-26 22:09:54 -0800 3716' href='/akkartik/mu/commit/html/070table.mu.html?h=main&id=4c4d325ca8544f52bb305dbb46b1f8144c33c2af'>4c4d325c ^
a654e4ec ^
805d58c6 ^
9e751bb8 ^
fe8bf967 ^
4bb57a55 ^
805d58c6 ^

4bb57a55 ^


805d58c6 ^
dcc060c7 ^

a654e4ec ^



e5c11a51 ^






















a654e4ec ^

dcc060c7 ^
e5c11a51 ^
a654e4ec ^
204dae92 ^






b301e0c0 ^
204dae92 ^
805d58c6 ^

204dae92 ^

805d58c6 ^

204dae92 ^




b301e0c0 ^
204dae92 ^
805d58c6 ^

204dae92 ^

805d58c6 ^

204dae92 ^




b301e0c0 ^
204dae92 ^
805d58c6 ^
204dae92 ^

805d58c6 ^

204dae92 ^


b301e0c0 ^
204dae92 ^
cdf28227 ^
b301e0c0 ^
204dae92 ^

b301e0c0 ^
204dae92 ^




cdf28227 ^
204dae92 ^
4a48bedc ^
204dae92 ^
cdf28227 ^

204dae92 ^



b301e0c0 ^
204dae92 ^
4a48bedc ^
204dae92 ^
b301e0c0 ^
cdf28227 ^

b301e0c0 ^


204dae92 ^


b301e0c0 ^
204dae92 ^


b301e0c0 ^
204dae92 ^
4a48bedc ^
204dae92 ^
b301e0c0 ^
cdf28227 ^

b301e0c0 ^


204dae92 ^









b301e0c0 ^
204dae92 ^
4a48bedc ^
204dae92 ^



dcc060c7 ^


a654e4ec ^
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
161
162
163
164
165
166
167
168
169
170
171
172
173
174