about summary refs log tree commit diff stats
path: root/subx/examples/ex8.subx
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2018-11-26 00:26:20 -0800
committerKartik Agaram <vc@akkartik.com>2018-11-26 00:26:20 -0800
commite5cbbea435524ecd77f4ebabaab873720c64464f (patch)
treee38a47bbd69fbc448c5d28da9e605126fd13e819 /subx/examples/ex8.subx
parentc1a3d36cad441d75bc1c627e0ea263e0f03b3da1 (diff)
downloadmu-e5cbbea435524ecd77f4ebabaab873720c64464f.tar.gz
4780
Diffstat (limited to 'subx/examples/ex8.subx')
-rw-r--r--subx/examples/ex8.subx1
1 files changed, 1 insertions, 0 deletions
diff --git a/subx/examples/ex8.subx b/subx/examples/ex8.subx
index 4dc0054f..3f5ebce5 100644
--- a/subx/examples/ex8.subx
+++ b/subx/examples/ex8.subx
@@ -18,6 +18,7 @@
 # instruction                     effective address                                                   operand     displacement    immediate
 # op          subop               mod             rm32          base        index         scale       r32
 # 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
+
   # prolog
   89/copy                         3/mod/direct    5/rm32/EBP    .           .             .           4/r32/ESP   .               .                 # copy ESP to EBP
   # call ascii-length(argv[1])
'n17' href='#n17'>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
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195