VirtualBox

source: vbox/trunk/src/VBox/Disassembler/DisasmTestA.asm@ 8985

Last change on this file since 8985 was 8491, checked in by vboxsync, 17 years ago

Fixed OS/2 builds.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 2.4 KB
Line 
1;
2; VBox disassembler:
3; Assembler test routines
4
5;
6; Copyright (C) 2006-2007 Sun Microsystems, Inc.
7;
8; This file is part of VirtualBox Open Source Edition (OSE), as
9; available from http://www.virtualbox.org. This file is free software;
10; you can redistribute it and/or modify it under the terms of the GNU
11; General Public License (GPL) as published by the Free Software
12; Foundation, in version 2 as it comes in the "COPYING" file of the
13; VirtualBox OSE distribution. VirtualBox OSE is distributed in the
14; hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
15;
16; Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
17; Clara, CA 95054 USA or visit http://www.sun.com if you need
18; additional information or have any questions.
19;
20
21;*******************************************************************************
22;* Header Files *
23;*******************************************************************************
24%include "VBox/nasm.mac"
25%include "VBox/vm.mac"
26%include "VBox/err.mac"
27%include "VBox/stam.mac"
28%include "VBox/x86.mac"
29
30BITS 32
31
32BEGINCODE
33
34align 16
35BEGINPROC TestProc
36 movzx eax,byte [edx]
37 movzx eax,word [edx]
38; mov dword es:[ebx + 1234h], 0789h
39; mov word fs:[ebx + ecx], 0654h
40; mov byte [esi + eax*4], 0654h
41; mov bl, byte ds:[ebp + 1234h]
42; mov al, cs:[1234h + ecx*8]
43; mov al, cs:[1234h]
44; mov ax, cs:[1234h]
45; mov eax, cs:[1234h]
46 lock cmpxchg [ecx], eax
47 lock cmpxchg [ecx], ax
48 lock cmpxchg [ecx], dl
49 movzx ESI,word [EAX]
50 in al, dx
51 in ax, dx
52 in eax, dx
53 mov ebx, [ecx + eax*4 + 17]
54 mov ebx, [ebp + eax*4 + 4]
55 mov ebx, [ebp + eax*4]
56 int 80h
57 in al, 60h
58 in ax, dx
59 out 64h, eax
60
61 movss xmm0, xmm1
62 movsd xmm6, xmm1
63
64 pause
65
66ENDPROC TestProc
67
68%ifndef RT_OS_OS2
69BITS 64
70align 16
71BEGINPROC TestProc64
72 movzx rax,byte [edx]
73 movzx rax,word [edx]
74 movzx rax,byte [rdx]
75 lock cmpxchg [rcx], rax
76 lock cmpxchg [rcx], ax
77 lock cmpxchg [r15], dl
78 movzx RSI, word [R8]
79 in al, dx
80 in ax, dx
81 in eax, dx
82 mov rbx, [rcx + rax*4 + 17]
83 mov rbx, [rbp + rax*4 + 4]
84 mov rbx, [rbp + rax*4]
85 mov rbx, [ebp + eax*4]
86 int 80h
87 in al, 60h
88 in ax, dx
89 out 64h, eax
90
91 movss xmm0, xmm14
92 movsd xmm6, xmm1
93 ret
94ENDPROC TestProc64
95%endif
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette