From 2104d1a75b76dbffc0b15a96c98d94e7a16594e8 Mon Sep 17 00:00:00 2001 From: Kartik Agaram Date: Mon, 27 Jan 2020 00:39:46 -0800 Subject: 5925 --- html/057write.subx.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'html/057write.subx.html') diff --git a/html/057write.subx.html b/html/057write.subx.html index d890be19..0cfc4ac4 100644 --- a/html/057write.subx.html +++ b/html/057write.subx.html @@ -81,7 +81,7 @@ if ('onhashchange' in window) { 21 # . 1-3 bytes 3 bits 2 bits 3 bits 3 bits 3 bits 2 bits 2 bits 0/1/2/4 bytes 0/1/2/4 bytes 22 23 # TODO: come up with a way to signal when a write to disk fails - 24 write: # f : fd or (addr stream byte), s : (addr array byte) + 24 write: # f: fd or (addr stream byte), s: (addr array byte) 25 # . prologue 26 55/push-ebp 27 89/copy 3/mod/direct 5/rm32/ebp . . . 4/r32/esp . . # copy esp to ebp -- cgit 1.4.1-2-gfad0 ;id=6dff1f28b4a513ab51e21cc9ee2680797dc62e49'>diff stats
path: root/subx/build
blob: 67479b92015e166c0a9032df5efd5011ed72a6a1 (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