summaryrefslogtreecommitdiff
path: root/test/splitea.asm
diff options
context:
space:
mode:
Diffstat (limited to 'test/splitea.asm')
-rw-r--r--test/splitea.asm11
1 files changed, 11 insertions, 0 deletions
diff --git a/test/splitea.asm b/test/splitea.asm
new file mode 100644
index 0000000..a2d980b
--- /dev/null
+++ b/test/splitea.asm
@@ -0,0 +1,11 @@
+ bits 32
+
+ mov eax,[eax]
+ mov eax,[eax+ecx]
+ mov eax,[eax+ecx*4]
+ mov eax,[eax+ecx*4+8]
+
+ mov eax,[eax]
+ mov eax,[eax,ecx]
+ mov eax,[eax,ecx*4]
+ mov eax,[eax+8,ecx*4]