diff options
author | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2003-03-22 15:20:50 +0000 |
---|---|---|
committer | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2003-03-22 15:20:50 +0000 |
commit | e591824733ec698d92d1f09c2ffb9b86b799d6da (patch) | |
tree | dbac3b6ec25f2df4c6b3a49d5eeb0396433b7267 /tests/test-i386-code16.S | |
parent | 04369ff2f525ea510b6ddeaa2e3ed6aedde8bbb4 (diff) | |
download | qemu-e591824733ec698d92d1f09c2ffb9b86b799d6da.tar.gz qemu-e591824733ec698d92d1f09c2ffb9b86b799d6da.tar.bz2 qemu-e591824733ec698d92d1f09c2ffb9b86b799d6da.zip |
added code16 tests
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@37 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'tests/test-i386-code16.S')
-rw-r--r-- | tests/test-i386-code16.S | 80 |
1 files changed, 80 insertions, 0 deletions
diff --git a/tests/test-i386-code16.S b/tests/test-i386-code16.S new file mode 100644 index 0000000000..446f0d7bf1 --- /dev/null +++ b/tests/test-i386-code16.S @@ -0,0 +1,80 @@ + .code16 + .globl code16_start + .globl code16_end + +CS_SEG = 0xf + +code16_start: + + .globl code16_func1 + + /* basic test */ +code16_func1 = . - code16_start + mov $1, %eax + data32 lret + +/* test push/pop in 16 bit mode */ + .globl code16_func2 +code16_func2 = . - code16_start + xor %eax, %eax + mov $0x12345678, %ebx + movl %esp, %ecx + push %bx + subl %esp, %ecx + pop %ax + data32 lret + +/* test various jmp opcodes */ + .globl code16_func3 +code16_func3 = . - code16_start + jmp 1f + nop +1: + mov $4, %eax + mov $0x12345678, %ebx + xor %bx, %bx + jz 2f + add $2, %ax +2: + + call myfunc + + lcall $CS_SEG, $(myfunc2 - code16_start) + + ljmp $CS_SEG, $(myjmp1 - code16_start) +myjmp1_next: + + cs lcall myfunc2_addr - code16_start + + cs ljmp myjmp2_addr - code16_start +myjmp2_next: + + data32 lret + +myfunc2_addr: + .short myfunc2 - code16_start + .short CS_SEG + +myjmp2_addr: + .short myjmp2 - code16_start + .short CS_SEG + +myjmp1: + add $8, %ax + jmp myjmp1_next + +myjmp2: + add $16, %ax + jmp myjmp2_next + +myfunc: + add $1, %ax + ret + +myfunc2: + add $4, %ax + lret + + +code16_end: +
\ No newline at end of file |