1 | ; $Id: env-bs2-r0-big.mac 47132 2013-07-14 00:06:54Z vboxsync $
|
---|
2 | ;; @file
|
---|
3 | ; Instruction Test Environment - Big Boot Sector Type 2, Ring-0.
|
---|
4 | ;
|
---|
5 |
|
---|
6 | ;
|
---|
7 | ; Copyright (C) 2006-2013 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_big_mac
|
---|
19 | %define ___env_bs2_r0_big_mac
|
---|
20 |
|
---|
21 | ;
|
---|
22 | ; Include the BS2 API for BIG images.
|
---|
23 | ;
|
---|
24 | %include "bootsector2-api.mac"
|
---|
25 |
|
---|
26 |
|
---|
27 | ;; Call RTTestISub like function.
|
---|
28 | %define VBINSTST_CALL_FN_SUB_TEST call [TMPL_NM_CMN(g_pfnTestSub) xWrtRIP]
|
---|
29 |
|
---|
30 | ;; Call RTTestIFailure like function with simple message.
|
---|
31 | %define VBINSTST_CALL_FN_FAILURE call [TMPL_NM_CMN(g_pfnTestFailedF) xWrtRIP]
|
---|
32 |
|
---|
33 | ;; Call RTTestIFailure like function with format message + 1 arg.
|
---|
34 | %define VBINSTST_CALL_FN_FAILURE_1 call [TMPL_NM_CMN(g_pfnTestFailedF) xWrtRIP]
|
---|
35 |
|
---|
36 | ;; Call RTTestIFailure like function with format message + 2 args.
|
---|
37 | %define VBINSTST_CALL_FN_FAILURE_2 call [TMPL_NM_CMN(g_pfnTestFailedF) xWrtRIP]
|
---|
38 |
|
---|
39 | ;; Call RTTestIFailure like function with format message + 3 args.
|
---|
40 | %define VBINSTST_CALL_FN_FAILURE_3 call [TMPL_NM_CMN(g_pfnTestFailedF) xWrtRIP]
|
---|
41 |
|
---|
42 | ;; Call RTTestIFailure like function with format message + 4 args.
|
---|
43 | %define VBINSTST_CALL_FN_FAILURE_4 call [TMPL_NM_CMN(g_pfnTestFailedF) xWrtRIP]
|
---|
44 |
|
---|
45 | ;; The image base label (used by the trap macros).
|
---|
46 | %define VBINSTST_IMAGE_BASE_LABLE bs2_big_image_start
|
---|
47 |
|
---|
48 | ;; Wrapper for calling TestInstallTrapRecs (used by the trap macros).
|
---|
49 | %define VBINSTST_CALL_TEST_INSTALL_TRAP_RECS call [TMPL_NM_CMN(g_pfnTestInstallTrapRecs) xWrtRIP]
|
---|
50 |
|
---|
51 | ;
|
---|
52 | ; Include the common bits (contains code using above macros)
|
---|
53 | ;
|
---|
54 | %include "env-bs2-r0-common.mac"
|
---|
55 |
|
---|
56 | %endif
|
---|
57 |
|
---|