summaryrefslogtreecommitdiff
path: root/test/loopoffs.asm
diff options
context:
space:
mode:
authorH. Peter Anvin <hpa@zytor.com>2003-09-08 22:59:45 +0000
committerH. Peter Anvin <hpa@zytor.com>2003-09-08 22:59:45 +0000
commit8b3d1a546d115e516e6f4979df69d00dabde1b06 (patch)
tree2b709e96d290912fa81a75c84ca6c356204b7f7e /test/loopoffs.asm
parent3da80c0686d3b002a518646b1f43b0c0c3867326 (diff)
downloadnasm-8b3d1a546d115e516e6f4979df69d00dabde1b06.tar.gz
nasm-8b3d1a546d115e516e6f4979df69d00dabde1b06.tar.bz2
nasm-8b3d1a546d115e516e6f4979df69d00dabde1b06.zip
More test files...
Diffstat (limited to 'test/loopoffs.asm')
-rw-r--r--test/loopoffs.asm10
1 files changed, 10 insertions, 0 deletions
diff --git a/test/loopoffs.asm b/test/loopoffs.asm
new file mode 100644
index 0000000..65914a6
--- /dev/null
+++ b/test/loopoffs.asm
@@ -0,0 +1,10 @@
+ bits 16
+delay: loop delay
+ loop $
+delay2: a32 loop delay2
+ a32 loop $
+delay3: loop delay3,ecx
+ loop $,ecx
+delay4: a32 loop delay4,ecx
+ a32 loop $,ecx
+ \ No newline at end of file