diff options
author | H. Peter Anvin <hpa@zytor.com> | 2003-09-08 22:59:45 +0000 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2003-09-08 22:59:45 +0000 |
commit | 8b3d1a546d115e516e6f4979df69d00dabde1b06 (patch) | |
tree | 2b709e96d290912fa81a75c84ca6c356204b7f7e /test/loopoffs.asm | |
parent | 3da80c0686d3b002a518646b1f43b0c0c3867326 (diff) | |
download | nasm-8b3d1a546d115e516e6f4979df69d00dabde1b06.tar.gz nasm-8b3d1a546d115e516e6f4979df69d00dabde1b06.tar.bz2 nasm-8b3d1a546d115e516e6f4979df69d00dabde1b06.zip |
More test files...
Diffstat (limited to 'test/loopoffs.asm')
-rw-r--r-- | test/loopoffs.asm | 10 |
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 |