VirtualBox

source: vbox/trunk/src/VBox/ValidationKit/bootsectors/bs3kit/bs3-wc16-I8DQ.asm@ 93115

Last change on this file since 93115 was 93115, checked in by vboxsync, 3 years ago

scm --update-copyright-year

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 2.7 KB
Line 
1; $Id: bs3-wc16-I8DQ.asm 93115 2022-01-01 11:31:46Z vboxsync $
2;; @file
3; BS3Kit - 16-bit Watcom C/C++, 64-bit unsigned integer division.
4;
5
6;
7; Copyright (C) 2007-2022 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%include "bs3kit-template-header.mac"
28
29BS3_EXTERN_CMN Bs3Int64Div
30
31
32;;
33; 64-bit unsigned integer division, SS variant.
34;
35; @returns ax:bx:cx:dx quotient. (AX is the most significant, DX the least)
36; @param ax:bx:cx:dx Dividend.
37; @param [ss:si] Divisor
38;
39; @uses Nothing.
40;
41global $_?I8DQ
42$_?I8DQ:
43 push es
44 push ss
45 pop es
46%ifdef ASM_MODEL_FAR_CODE
47 push cs
48%endif
49 call $_?I8DQE
50 pop es
51%ifdef ASM_MODEL_FAR_CODE
52 retf
53%else
54 ret
55%endif
56
57;;
58; 64-bit unsigned integer division, ES variant.
59;
60; @returns ax:bx:cx:dx quotient. (AX is the most significant, DX the least)
61; @param ax:bx:cx:dx Dividend.
62; @param [es:si] Divisor
63;
64; @uses Nothing.
65;
66global $_?I8DQE
67$_?I8DQE:
68 push ds
69 push es
70
71 ;
72 ; Convert to a C __cdecl call - not doing this in assembly.
73 ;
74
75 ; Set up a frame of sorts, allocating 16 bytes for the result buffer.
76 push bp
77 sub sp, 10h
78 mov bp, sp
79
80 ; Pointer to the return buffer.
81 push ss
82 push bp
83 add bp, 10h ; Correct bp.
84
85 ; The divisor.
86 push dword [es:si + 4]
87 push dword [es:si]
88
89 ; The dividend.
90 push ax
91 push bx
92 push cx
93 push dx
94
95 call Bs3Int64Div
96
97 ; Load the quotient.
98 mov ax, [bp - 10h + 8 + 6]
99 mov bx, [bp - 10h + 8 + 4]
100 mov cx, [bp - 10h + 8 + 2]
101 mov dx, [bp - 10h + 8]
102
103 leave
104 pop es
105 pop ds
106%ifdef ASM_MODEL_FAR_CODE
107 retf
108%else
109 ret
110%endif
111
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette