1 | ; $Id: env-bs2-r0.mac 82968 2020-02-04 10:35:17Z vboxsync $
|
---|
2 | ;; @file
|
---|
3 | ; Instruction Test Environment - Boot Sector Type 2, Ring-0.
|
---|
4 | ;
|
---|
5 |
|
---|
6 | ;
|
---|
7 | ; Copyright (C) 2006-2020 Oracle Corporation
|
---|
8 | ;
|
---|
9 | ; This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
10 | ; available from http://www.virtualbox.org. This file is free software;
|
---|
11 | ; you can redistribute it and/or modify it under the terms of the GNU
|
---|
12 | ; General Public License (GPL) as published by the Free Software
|
---|
13 | ; Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
14 | ; VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
15 | ; hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
16 | ;
|
---|
17 |
|
---|
18 | %ifndef ___env_bs2_r0_mac
|
---|
19 | %define ___env_bs2_r0_mac
|
---|
20 |
|
---|
21 |
|
---|
22 | ;; Call RTTestISub like function.
|
---|
23 | %define VBINSTST_CALL_FN_SUB_TEST call TMPL_NM_CMN(TestSub)
|
---|
24 |
|
---|
25 | ;; Call RTTestIFailure like function with simple message.
|
---|
26 | %define VBINSTST_CALL_FN_FAILURE call TMPL_NM_CMN(TestFailedF)
|
---|
27 |
|
---|
28 | ;; Call RTTestIFailure like function with format message + 1 arg.
|
---|
29 | %define VBINSTST_CALL_FN_FAILURE_1 call TMPL_NM_CMN(TestFailedF)
|
---|
30 |
|
---|
31 | ;; Call RTTestIFailure like function with format message + 2 args.
|
---|
32 | %define VBINSTST_CALL_FN_FAILURE_2 call TMPL_NM_CMN(TestFailedF)
|
---|
33 |
|
---|
34 | ;; Call RTTestIFailure like function with format message + 3 args.
|
---|
35 | %define VBINSTST_CALL_FN_FAILURE_3 call TMPL_NM_CMN(TestFailedF)
|
---|
36 |
|
---|
37 | ;; Call RTTestIFailure like function with format message + 4 args.
|
---|
38 | %define VBINSTST_CALL_FN_FAILURE_4 call TMPL_NM_CMN(TestFailedF)
|
---|
39 |
|
---|
40 | ;; The image base label (used by the trap macros).
|
---|
41 | %define VBINSTST_IMAGE_BASE_LABLE start
|
---|
42 |
|
---|
43 | ;; Wrapper for calling TestInstallTrapRecs (used by the trap macros).
|
---|
44 | %define VBINSTST_CALL_TEST_INSTALL_TRAP_RECS call TMPL_NM_CMN(TestInstallTrapRecs)
|
---|
45 |
|
---|
46 |
|
---|
47 | ;
|
---|
48 | ; Include the common bits (contains code using above macros)
|
---|
49 | ;
|
---|
50 | %include "env-bs2-r0-common.mac"
|
---|
51 |
|
---|
52 | %endif
|
---|
53 |
|
---|