Last change
on this file since 103928 was 98103, checked in by vboxsync, 22 months ago |
Copyright year updates by scm.
|
-
Property svn:eol-style
set to
native
-
Property svn:keywords
set to
Id Revision
|
File size:
1.3 KB
|
Line | |
---|
1 | ; $Id: tstAsmPush-1.asm 98103 2023-01-17 14:15:46Z vboxsync $
|
---|
2 | ;; @file
|
---|
3 | ; Disassembly testcase - Valid push sequences and related instructions.
|
---|
4 | ;
|
---|
5 | ; This is a build test, that means it will be assembled, disassembled,
|
---|
6 | ; then the disassembly output will be assembled and the new binary will
|
---|
7 | ; compared with the original.
|
---|
8 | ;
|
---|
9 |
|
---|
10 | ;
|
---|
11 | ; Copyright (C) 2008-2023 Oracle and/or its affiliates.
|
---|
12 | ;
|
---|
13 | ; This file is part of VirtualBox base platform packages, as
|
---|
14 | ; available from https://www.virtualbox.org.
|
---|
15 | ;
|
---|
16 | ; This program is free software; you can redistribute it and/or
|
---|
17 | ; modify it under the terms of the GNU General Public License
|
---|
18 | ; as published by the Free Software Foundation, in version 3 of the
|
---|
19 | ; License.
|
---|
20 | ;
|
---|
21 | ; This program is distributed in the hope that it will be useful, but
|
---|
22 | ; WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
23 | ; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
---|
24 | ; General Public License for more details.
|
---|
25 | ;
|
---|
26 | ; You should have received a copy of the GNU General Public License
|
---|
27 | ; along with this program; if not, see <https://www.gnu.org/licenses>.
|
---|
28 | ;
|
---|
29 | ; SPDX-License-Identifier: GPL-3.0-only
|
---|
30 | ;
|
---|
31 |
|
---|
32 | BITS TEST_BITS
|
---|
33 | %if TEST_BITS != 64
|
---|
34 | push bp
|
---|
35 | push ebp
|
---|
36 | push word [bp]
|
---|
37 | push dword [bp]
|
---|
38 | push word [ebp]
|
---|
39 | push dword [ebp]
|
---|
40 | %else
|
---|
41 | %if 0 ; doesn't work yet - default operand size is wrong?
|
---|
42 | push rbp
|
---|
43 | push qword [rbp]
|
---|
44 | %endif
|
---|
45 | %endif
|
---|
46 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.