From 03a1de45367ad0c52e6da03fcf56bfbee60a0ed3 Mon Sep 17 00:00:00 2001 From: Kartik Agaram Date: Sat, 28 Dec 2019 00:02:29 -0800 Subject: 5835 --- html/069allocate.subx.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'html/069allocate.subx.html') diff --git a/html/069allocate.subx.html b/html/069allocate.subx.html index 5cf3b7d2..a1bca554 100644 --- a/html/069allocate.subx.html +++ b/html/069allocate.subx.html @@ -152,7 +152,7 @@ if ('onhashchange' in window) { 91 68/push "allocate: failed to allocate\n"/imm32 92 68/push 2/imm32/stderr 93 # . . call - 94 e8/call _write/disp32 + 94 e8/call _write/disp32 95 # . . discard args 96 81 0/subop/add 3/mod/direct 4/rm32/esp . . . . . 8/imm32 # add to esp 97 # . syscall(exit, 1) @@ -286,7 +286,7 @@ if ('onhashchange' in window) { 225 68/push "allocate-region: failed to allocate\n"/imm32 226 68/push 2/imm32/stderr 227 # . . call -228 e8/call _write/disp32 +228 e8/call _write/disp32 229 # . . discard args 230 81 0/subop/add 3/mod/direct 4/rm32/esp . . . . . 8/imm32 # add to esp 231 # . syscall(exit, 1) -- cgit 1.4.1-2-gfad0 lain/mandelbrot.mu?h=hlt&id=9d2c64455a87edd4d241cbedd18963010b110a32'>plain) (blame)
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
175
176
177
178
179