1 | ; $Id: bs3-cmn-SelRealModeDataToFlat.asm 76553 2019-01-01 01:45:53Z vboxsync $
|
---|
2 | ;; @file
|
---|
3 | ; BS3Kit - Bs3SelRealModeDataToFlat.
|
---|
4 | ;
|
---|
5 |
|
---|
6 | ;
|
---|
7 | ; Copyright (C) 2007-2019 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 | ; The contents of this file may alternatively be used under the terms
|
---|
18 | ; of the Common Development and Distribution License Version 1.0
|
---|
19 | ; (CDDL) only, as it comes in the "COPYING.CDDL" file of the
|
---|
20 | ; VirtualBox OSE distribution, in which case the provisions of the
|
---|
21 | ; CDDL are applicable instead of those of the GPL.
|
---|
22 | ;
|
---|
23 | ; You may elect to license modified versions of this file under the
|
---|
24 | ; terms and conditions of either the GPL or the CDDL or both.
|
---|
25 | ;
|
---|
26 |
|
---|
27 |
|
---|
28 | ;*********************************************************************************************************************************
|
---|
29 | ;* Header Files *
|
---|
30 | ;*********************************************************************************************************************************
|
---|
31 | %include "bs3kit-template-header.mac"
|
---|
32 |
|
---|
33 |
|
---|
34 | ;*********************************************************************************************************************************
|
---|
35 | ;* External Symbols *
|
---|
36 | ;*********************************************************************************************************************************
|
---|
37 | TMPL_BEGIN_TEXT
|
---|
38 | %if TMPL_BITS == 16
|
---|
39 | CPU 8086
|
---|
40 | %endif
|
---|
41 |
|
---|
42 |
|
---|
43 | ;;
|
---|
44 | ; @cproto BS3_CMN_PROTO_NOSB(uint32_t, Bs3SelRealModeDataToFlat,(uint32_t uFar1616));
|
---|
45 | ; @cproto BS3_CMN_PROTO_NOSB(uint32_t, Bs3SelRealModeCodeToFlat,(uint32_t uFar1616));
|
---|
46 | ;
|
---|
47 | ; @uses Only return registers (ax:dx, eax, eax);
|
---|
48 | ; @remarks No 20h scratch area requirements.
|
---|
49 | ;
|
---|
50 | BS3_PROC_BEGIN_CMN Bs3SelRealModeCodeToFlat, BS3_PBC_NEAR ; Far stub generated by the makefile/bs3kit.h.
|
---|
51 | BS3_PROC_BEGIN_CMN Bs3SelRealModeDataToFlat, BS3_PBC_NEAR ; Far stub generated by the makefile/bs3kit.h.
|
---|
52 | push xBP
|
---|
53 | mov xBP, xSP
|
---|
54 |
|
---|
55 | ; Calc flat address.
|
---|
56 | %if TMPL_BITS == 16
|
---|
57 | push cx
|
---|
58 | mov dx, [xBP + xCB + cbCurRetAddr + 2]
|
---|
59 | mov ax, dx
|
---|
60 | mov cl, 12
|
---|
61 | shr dx, cl
|
---|
62 | mov cl, 4
|
---|
63 | shl ax, cl
|
---|
64 | add ax, [xBP + xCB + cbCurRetAddr]
|
---|
65 | adc dx, 0
|
---|
66 | pop cx
|
---|
67 |
|
---|
68 | %elif TMPL_BITS == 32
|
---|
69 | movzx eax, word [xBP + xCB + cbCurRetAddr + 2]
|
---|
70 | shl eax, 4
|
---|
71 | add ax, [xBP + xCB + cbCurRetAddr]
|
---|
72 | jnc .return
|
---|
73 | add eax, 10000h
|
---|
74 |
|
---|
75 | %elif TMPL_BITS == 64
|
---|
76 | mov eax, ecx
|
---|
77 | shr eax, 16
|
---|
78 | shl eax, 4
|
---|
79 | add ax, cx
|
---|
80 | jnc .return
|
---|
81 | add eax, 10000h
|
---|
82 |
|
---|
83 | %else
|
---|
84 | %error "TMPL_BITS!"
|
---|
85 | %endif
|
---|
86 |
|
---|
87 | .return:
|
---|
88 | pop xBP
|
---|
89 | BS3_HYBRID_RET
|
---|
90 | BS3_PROC_END_CMN Bs3SelRealModeDataToFlat
|
---|
91 |
|
---|