Last change
on this file since 5580 was 5296, checked in by vboxsync, 17 years ago |
Corrected disasm test
|
-
Property svn:eol-style
set to
native
-
Property svn:keywords
set to
Author Date Id Revision
|
File size:
1.7 KB
|
Line | |
---|
1 | ;
|
---|
2 | ; VBox disassembler:
|
---|
3 | ; Assembler test routines
|
---|
4 |
|
---|
5 | ;
|
---|
6 | ; Copyright (C) 2006-2007 innotek 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 | ;*******************************************************************************
|
---|
17 | ;* Header Files *
|
---|
18 | ;*******************************************************************************
|
---|
19 | %include "VBox/nasm.mac"
|
---|
20 | %include "VBox/vm.mac"
|
---|
21 | %include "VBox/err.mac"
|
---|
22 | %include "VBox/stam.mac"
|
---|
23 | %include "VBox/x86.mac"
|
---|
24 |
|
---|
25 | BITS 32
|
---|
26 |
|
---|
27 | BEGINCODE
|
---|
28 |
|
---|
29 | align 16
|
---|
30 | BEGINPROC TestProc
|
---|
31 | movzx eax,byte [edx]
|
---|
32 | movzx eax,word [edx]
|
---|
33 | ; mov dword es:[ebx + 1234h], 0789h
|
---|
34 | ; mov word fs:[ebx + ecx], 0654h
|
---|
35 | ; mov byte [esi + eax*4], 0654h
|
---|
36 | ; mov bl, byte ds:[ebp + 1234h]
|
---|
37 | ; mov al, cs:[1234h + ecx*8]
|
---|
38 | ; mov al, cs:[1234h]
|
---|
39 | ; mov ax, cs:[1234h]
|
---|
40 | ; mov eax, cs:[1234h]
|
---|
41 | lock cmpxchg [ecx], eax
|
---|
42 | lock cmpxchg [ecx], ax
|
---|
43 | lock cmpxchg [ecx], dl
|
---|
44 | movzx ESI,word [EAX]
|
---|
45 | in al, dx
|
---|
46 | in ax, dx
|
---|
47 | in eax, dx
|
---|
48 | mov ebx, [ecx + eax*4 + 17]
|
---|
49 | mov ebx, [ebp + eax*4 + 4]
|
---|
50 | mov ebx, [ebp + eax*4]
|
---|
51 | int 80h
|
---|
52 | in al, 60h
|
---|
53 | in ax, dx
|
---|
54 | out 64h, eax
|
---|
55 |
|
---|
56 | movss xmm0, xmm1
|
---|
57 | movsd xmm6, xmm1
|
---|
58 |
|
---|
59 | pause
|
---|
60 |
|
---|
61 | ENDPROC TestProc
|
---|
62 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.