home *** CD-ROM | disk | FTP | other *** search
- #pragma inline
- /*
- * This file forms part of "TKERN" - "Troy's Kernel for Windows".
- *
- * Copyright (C) 1994 Troy Rollo <troy@cbme.unsw.EDU.AU>
- *
- * This file is explicitly placed in the public domain. You may use it
- * it for any purpose you see fit, including, but not limited to,
- * incorperating it into a private, commercial, public domain,
- * shareware, freeware or free software work.
- */
-
- void near _setupio( void )
- {
- /* I/O Setup is performed in WinMain for TKERN */
- }
-
- /*#pragma warn -asm*/
- asm _INIT_ SEGMENT WORD PUBLIC 'INITDATA'
- asm db 0
- asm db 2
- asm dw offset _setupio
- asm dw 0
- asm _INIT_ ENDS
- /*#pragma warn .asm*/
-