1 | ;
|
---|
2 | ; VBox disassembler:
|
---|
3 | ; Assembler test routines
|
---|
4 |
|
---|
5 | ;
|
---|
6 | ; Copyright (C) 2006 InnoTek Systemberatung GmbH
|
---|
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 as published by the Free Software Foundation,
|
---|
12 | ; in version 2 as it comes in the "COPYING" file of the VirtualBox OSE
|
---|
13 | ; distribution. VirtualBox OSE is distributed in the hope that it will
|
---|
14 | ; be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
15 | ;
|
---|
16 | ; If you received this file as part of a commercial VirtualBox
|
---|
17 | ; distribution, then only the terms of your commercial VirtualBox
|
---|
18 | ; license agreement apply instead of the previous paragraph.
|
---|
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 |
|
---|
30 | BITS 32
|
---|
31 |
|
---|
32 | BEGINCODE
|
---|
33 |
|
---|
34 | align 16
|
---|
35 | BEGINPROC 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 | movzx ESI,word [EAX]
|
---|
47 | in al, dx
|
---|
48 | in ax, dx
|
---|
49 | in eax, dx
|
---|
50 | mov ebx, [ecx + eax*4 + 17]
|
---|
51 | mov ebx, [ebp + eax*4 + 4]
|
---|
52 | mov ebx, [ebp + eax*4]
|
---|
53 | int 80h
|
---|
54 | in al, 60h
|
---|
55 | in ax, dx
|
---|
56 | out 64h, eax
|
---|
57 |
|
---|
58 | movss xmm0, xmm1
|
---|
59 | movsd xmm6, xmm1
|
---|
60 |
|
---|
61 | pause
|
---|
62 |
|
---|
63 | ENDPROC TestProc
|
---|
64 |
|
---|