1 | ; $Id: bootsector2-cpu-basic-1-template.mac 106061 2024-09-16 14:03:52Z vboxsync $
|
---|
2 | ;; @file
|
---|
3 | ; bootsector2 basic #1 - multi mode template.
|
---|
4 | ;
|
---|
5 |
|
---|
6 | ;
|
---|
7 | ; Copyright (C) 2007-2024 Oracle and/or its affiliates.
|
---|
8 | ;
|
---|
9 | ; This file is part of VirtualBox base platform packages, as
|
---|
10 | ; available from https://www.virtualbox.org.
|
---|
11 | ;
|
---|
12 | ; This program is free software; you can redistribute it and/or
|
---|
13 | ; modify it under the terms of the GNU General Public License
|
---|
14 | ; as published by the Free Software Foundation, in version 3 of the
|
---|
15 | ; License.
|
---|
16 | ;
|
---|
17 | ; This program is distributed in the hope that it will be useful, but
|
---|
18 | ; WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
19 | ; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
---|
20 | ; General Public License for more details.
|
---|
21 | ;
|
---|
22 | ; You should have received a copy of the GNU General Public License
|
---|
23 | ; along with this program; if not, see <https://www.gnu.org/licenses>.
|
---|
24 | ;
|
---|
25 | ; The contents of this file may alternatively be used under the terms
|
---|
26 | ; of the Common Development and Distribution License Version 1.0
|
---|
27 | ; (CDDL), a copy of it is provided in the "COPYING.CDDL" file included
|
---|
28 | ; in the VirtualBox distribution, in which case the provisions of the
|
---|
29 | ; CDDL are applicable instead of those of the GPL.
|
---|
30 | ;
|
---|
31 | ; You may elect to license modified versions of this file under the
|
---|
32 | ; terms and conditions of either the GPL or the CDDL or both.
|
---|
33 | ;
|
---|
34 | ; SPDX-License-Identifier: GPL-3.0-only OR CDDL-1.0
|
---|
35 | ;
|
---|
36 |
|
---|
37 |
|
---|
38 | %include "bootsector2-template-header.mac"
|
---|
39 |
|
---|
40 |
|
---|
41 | ;;
|
---|
42 | ; Do the tests for this mode.
|
---|
43 | ;
|
---|
44 | ; @uses nothing
|
---|
45 | ;
|
---|
46 | BEGINCODELOW
|
---|
47 | BITS 16
|
---|
48 | BEGINPROC TMPL_NM(TestBasic1_rm)
|
---|
49 | push eax
|
---|
50 |
|
---|
51 | mov ax, .s_szTestName
|
---|
52 | call TestSub_r86
|
---|
53 |
|
---|
54 | call TMPL_NM(Bs2IsModeSupported_rm)
|
---|
55 | jz .skip_not_supported
|
---|
56 |
|
---|
57 | call TMPL_NM(Bs2EnterMode_rm)
|
---|
58 | BITS TMPL_BITS
|
---|
59 | ; Later, currently just getting thru the mode switch is good enough.
|
---|
60 | nop
|
---|
61 | call TMPL_NM(Bs2ExitMode)
|
---|
62 | BITS 16
|
---|
63 | .done1:
|
---|
64 | call TestSubDone_r86
|
---|
65 |
|
---|
66 | pop eax
|
---|
67 | ret
|
---|
68 |
|
---|
69 | .skip_not_supported:
|
---|
70 | mov eax, .s_szSkipNotSupported
|
---|
71 | call TestSkipped_r86
|
---|
72 | jmp .done1
|
---|
73 |
|
---|
74 | .s_szTestName:
|
---|
75 | db TMPL_MODE_STR, 0
|
---|
76 | .s_szSkipNotSupported:
|
---|
77 | db TMPL_MODE_STR, ' is not supported by the CPU', 10, 13, 0
|
---|
78 | ENDPROC TMPL_NM(TestBasic1_rm)
|
---|
79 | TMPL_BEGINCODE
|
---|
80 | BITS TMPL_BITS
|
---|
81 |
|
---|
82 |
|
---|
83 | %include "bootsector2-template-footer.mac"
|
---|
84 |
|
---|