1 | ; $Id: bootsector2-template-footer.mac 96407 2022-08-22 17:43:14Z vboxsync $
|
---|
2 | ;; @file
|
---|
3 | ; bootsector2 footer for multi-mode code templates.
|
---|
4 | ;
|
---|
5 |
|
---|
6 | ;
|
---|
7 | ; Copyright (C) 2007-2022 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 | ;
|
---|
39 | ; Undefine macros defined by the header.
|
---|
40 | ;
|
---|
41 | ; Note! The following is useful for verifying that all macros are included here:
|
---|
42 | ;
|
---|
43 | ; for i in `grep "%define" bootsector2-template-header.mac \
|
---|
44 | ; | sed -e 's/^ *%define *//' -e 's/^\([^() ]*\).*$/\1/' \
|
---|
45 | ; | sort -u`
|
---|
46 | ; do
|
---|
47 | ; if ! grep -wF "%undef $i" bootsector2-template-footer.mac; then
|
---|
48 | ; echo $i
|
---|
49 | ; fi
|
---|
50 | ; done
|
---|
51 | ;
|
---|
52 | %undef TMPL_RM
|
---|
53 | %undef TMPL_PE16
|
---|
54 | %undef TMPL_PE32
|
---|
55 | %undef TMPL_PEV86
|
---|
56 | %undef TMPL_PP16
|
---|
57 | %undef TMPL_PP32
|
---|
58 | %undef TMPL_PPV86
|
---|
59 | %undef TMPL_PAE16
|
---|
60 | %undef TMPL_PAE32
|
---|
61 | %undef TMPL_PAEV86
|
---|
62 | %undef TMPL_LM16
|
---|
63 | %undef TMPL_LM32
|
---|
64 | %undef TMPL_LM64
|
---|
65 |
|
---|
66 | %undef TMPL_CMN_PE
|
---|
67 | %undef TMPL_CMN_PP
|
---|
68 | %undef TMPL_CMN_PAE
|
---|
69 | %undef TMPL_CMN_LM
|
---|
70 | %undef TMPL_CMN_V86
|
---|
71 |
|
---|
72 | %undef TMPL_CMN_P16
|
---|
73 | %undef TMPL_CMN_P32
|
---|
74 | %undef TMPL_CMN_P64
|
---|
75 | %undef TMPL_CMN_R16
|
---|
76 | %undef TMPL_CMN_R86
|
---|
77 |
|
---|
78 | %undef TMPL_NM
|
---|
79 | %undef TMPL_NM_CMN
|
---|
80 | %undef TMPL_MODE
|
---|
81 | %undef TMPL_MODE_STR
|
---|
82 | %undef TMPL_16BIT
|
---|
83 | %undef TMPL_32BIT
|
---|
84 | %undef TMPL_64BIT
|
---|
85 | %undef TMPL_BITS
|
---|
86 | %undef TMPL_PTR_DEF
|
---|
87 | %undef TMPL_HAVE_BIOS
|
---|
88 | %undef TMPL_BEGINCODE
|
---|
89 |
|
---|
90 | %undef xCB
|
---|
91 | %undef xDEF
|
---|
92 | %undef xRES
|
---|
93 | %undef xPRE
|
---|
94 | %undef xSP
|
---|
95 | %undef xBP
|
---|
96 | %undef xAX
|
---|
97 | %undef xBX
|
---|
98 | %undef xCX
|
---|
99 | %undef xDX
|
---|
100 | %undef xDI
|
---|
101 | %undef xSI
|
---|
102 | %undef xWrtRIP
|
---|
103 |
|
---|
104 | %undef sCB
|
---|
105 | %undef sDEF
|
---|
106 | %undef sRES
|
---|
107 | %undef sPRE
|
---|
108 | %undef sSP
|
---|
109 | %undef sBP
|
---|
110 | %undef sAX
|
---|
111 | %undef sBX
|
---|
112 | %undef sCX
|
---|
113 | %undef sDX
|
---|
114 | %undef sDI
|
---|
115 | %undef sSI
|
---|
116 |
|
---|