1 | ; $Id: bootsector2-cpu-xcpt-2.asm 106061 2024-09-16 14:03:52Z vboxsync $
|
---|
2 | ;; @file
|
---|
3 | ; Bootsector test for debug exceptions.
|
---|
4 | ;
|
---|
5 | ; Recommended (but not necessary):
|
---|
6 | ; VBoxManage setextradata bs-cpu-xcpt-2 VBoxInternal/Devices/VMMDev/0/Config/TestingEnabled 1
|
---|
7 | ;
|
---|
8 |
|
---|
9 | ;
|
---|
10 | ; Copyright (C) 2007-2024 Oracle and/or its affiliates.
|
---|
11 | ;
|
---|
12 | ; This file is part of VirtualBox base platform packages, as
|
---|
13 | ; available from https://www.virtualbox.org.
|
---|
14 | ;
|
---|
15 | ; This program is free software; you can redistribute it and/or
|
---|
16 | ; modify it under the terms of the GNU General Public License
|
---|
17 | ; as published by the Free Software Foundation, in version 3 of the
|
---|
18 | ; License.
|
---|
19 | ;
|
---|
20 | ; This program is distributed in the hope that it will be useful, but
|
---|
21 | ; WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
22 | ; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
---|
23 | ; General Public License for more details.
|
---|
24 | ;
|
---|
25 | ; You should have received a copy of the GNU General Public License
|
---|
26 | ; along with this program; if not, see <https://www.gnu.org/licenses>.
|
---|
27 | ;
|
---|
28 | ; The contents of this file may alternatively be used under the terms
|
---|
29 | ; of the Common Development and Distribution License Version 1.0
|
---|
30 | ; (CDDL), a copy of it is provided in the "COPYING.CDDL" file included
|
---|
31 | ; in the VirtualBox distribution, in which case the provisions of the
|
---|
32 | ; CDDL are applicable instead of those of the GPL.
|
---|
33 | ;
|
---|
34 | ; You may elect to license modified versions of this file under the
|
---|
35 | ; terms and conditions of either the GPL or the CDDL or both.
|
---|
36 | ;
|
---|
37 | ; SPDX-License-Identifier: GPL-3.0-only OR CDDL-1.0
|
---|
38 | ;
|
---|
39 |
|
---|
40 |
|
---|
41 | ;*******************************************************************************
|
---|
42 | ;* Header Files *
|
---|
43 | ;*******************************************************************************
|
---|
44 | %include "iprt/asmdefs.mac"
|
---|
45 | %include "iprt/x86.mac"
|
---|
46 | %include "VBox/VMMDevTesting.mac"
|
---|
47 |
|
---|
48 |
|
---|
49 | ;
|
---|
50 | ; Include and execute the init code.
|
---|
51 | ;
|
---|
52 | %define BS2_INIT_RM
|
---|
53 | %define BS2_WITH_TRAPS
|
---|
54 | %define BS2_INC_RM
|
---|
55 | %define BS2_INC_PE16
|
---|
56 | %define BS2_INC_PE32
|
---|
57 | %define BS2_INC_PP16
|
---|
58 | %define BS2_INC_PP32
|
---|
59 | %define BS2_INC_PAE16
|
---|
60 | %define BS2_INC_PAE32
|
---|
61 | %define BS2_INC_LM16
|
---|
62 | %define BS2_INC_LM32
|
---|
63 | %define BS2_INC_LM64
|
---|
64 | %define BS2_WITH_TRAPRECS
|
---|
65 | %define BS2_WITH_XCPT_DB_CLEARING_TF
|
---|
66 | %include "bootsector2-common-init-code.mac"
|
---|
67 |
|
---|
68 |
|
---|
69 | ;
|
---|
70 | ; The main() function.
|
---|
71 | ;
|
---|
72 | BEGINPROC main
|
---|
73 | BITS 16
|
---|
74 | ;
|
---|
75 | ; Test prologue.
|
---|
76 | ;
|
---|
77 | mov ax, .s_szTstName
|
---|
78 | call TestInit_r86
|
---|
79 | call Bs2EnableA20_r86
|
---|
80 | cli ; raw-mode hack
|
---|
81 |
|
---|
82 |
|
---|
83 | ;
|
---|
84 | ; Execute the tests
|
---|
85 | ;
|
---|
86 | %if 1
|
---|
87 | call NAME(DoTestsForMode_rm_pe32)
|
---|
88 | %endif
|
---|
89 | %if 1
|
---|
90 | call NAME(DoTestsForMode_rm_pp32)
|
---|
91 | %endif
|
---|
92 | %if 1
|
---|
93 | call NAME(DoTestsForMode_rm_pae32)
|
---|
94 | %endif
|
---|
95 | %if 1
|
---|
96 | call NAME(DoTestsForMode_rm_lm64)
|
---|
97 | %endif
|
---|
98 |
|
---|
99 | ;
|
---|
100 | ; We're done.
|
---|
101 | ;
|
---|
102 | call TestTerm_r86
|
---|
103 | ret
|
---|
104 |
|
---|
105 | .s_szTstName:
|
---|
106 | db 'tstCpuXcpt2', 0
|
---|
107 | ENDPROC main
|
---|
108 |
|
---|
109 |
|
---|
110 | ;
|
---|
111 | ; Instantiate the template code.
|
---|
112 | ;
|
---|
113 | %include "bootsector2-template-footer.mac" ; reset the initial environemnt.
|
---|
114 |
|
---|
115 | %define TMPL_PE32
|
---|
116 | %include "bootsector2-cpu-xcpt-2-template.mac"
|
---|
117 | %define TMPL_PP32
|
---|
118 | %include "bootsector2-cpu-xcpt-2-template.mac"
|
---|
119 | %define TMPL_PAE32
|
---|
120 | %include "bootsector2-cpu-xcpt-2-template.mac"
|
---|
121 | %define TMPL_LM64
|
---|
122 | %include "bootsector2-cpu-xcpt-2-template.mac"
|
---|
123 |
|
---|
124 |
|
---|
125 | ;
|
---|
126 | ; End sections and image.
|
---|
127 | ;
|
---|
128 | %include "bootsector2-common-end.mac"
|
---|
129 |
|
---|