summaryrefslogtreecommitdiffstats
path: root/private/crt32/lowio/ppc/cinitcon.s
blob: 5e5b71e6b20b86d45209e93a8f66a16bead3fb78 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
//       page    ,132
//       title   cinitcon - C Run-Time Startup Initialization for Console I/O
//
//cinitcon.asm - C Run-Time Startup Initialization for WIN32
//
//       Copyright (c) 1990-1992, Microsoft Corporation. All rights reserved.
//
//Purpose:
//       Initialization and Termination for console I/O
//
//Notes:
//       _confh and _coninpfh are defined in this module to force the
//       inclusion of this module if any console I/O is performed.
//       This module places the address of _initcon() in the initializer
//       table and the address of _termcon() in the pre-terminator table.
//
//Revision History:
//       03-19-92  SKS   Module created.
//       03-24-92  SKS   Added MIPS support (NO_UNDERSCORE)
//       04-30-92  SKS   Add "offset FLAT:" to get correct fixups for OMF objs
//       08-06-92  SKS   Revised to use new section names and macros
//
// ****************************************************************************

#include "kxppc.h"

        .extern  _initcon
        .extern  _termcon


beginSection(XIC)

        .long   _initcon

endSection(XIC)


beginSection(XPX)

        .long   _termcon

endSection(XPX)


        .data
        .align  2

        .globl  _coninpfh
        .globl  _confh

_coninpfh:       .long   -1      // console input
_confh:          .long   -1      // console output