Last change
on this file since 94619 was 93128, checked in by vboxsync, 3 years ago |
Add/os2: Outline of a simpler installer for the OS/2 GAs. Uses Watcom w/o a CRT as that's means it's possible to cross compile from windows, linux or darwin hosts.
|
-
Property svn:eol-style
set to
native
-
Property svn:keywords
set to
Author Date Id Revision
|
File size:
996 bytes
|
Line | |
---|
1 | ; $Id: VBoxOs2AdditionsInstallA.asm 93128 2022-01-06 02:46:30Z vboxsync $
|
---|
2 | ;; @file
|
---|
3 | ; VBoxOs2AdditionsInstallA - Watcom assembly file that defines the stack.
|
---|
4 | ;
|
---|
5 |
|
---|
6 | ;
|
---|
7 | ; Copyright (C) 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 |
|
---|
18 | .386p
|
---|
19 |
|
---|
20 | DGROUP group CONST,CONST2,_DATA,_BSS,STACK
|
---|
21 |
|
---|
22 | CONST segment use32 dword public 'DATA'
|
---|
23 | CONST ends
|
---|
24 |
|
---|
25 | CONST2 segment use32 dword public 'DATA'
|
---|
26 | CONST2 ends
|
---|
27 |
|
---|
28 | _DATA segment use32 dword public 'DATA'
|
---|
29 | _DATA ends
|
---|
30 |
|
---|
31 | _BSS segment use32 dword public 'BSS'
|
---|
32 | _BSS ends
|
---|
33 |
|
---|
34 | STACK segment use32 para stack 'STACK'
|
---|
35 | db 1000h dup(?)
|
---|
36 | STACK ends
|
---|
37 |
|
---|
38 | end
|
---|
39 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.