intdx086.c

来自「开放源码的编译器open watcom 1.6.0版的源代码」· C语言 代码 · 共 137 行

C
137
字号
/****************************************************************************
*
*                            Open Watcom Project
*
*    Portions Copyright (c) 1983-2002 Sybase, Inc. All Rights Reserved.
*
*  ========================================================================
*
*    This file contains Original Code and/or Modifications of Original
*    Code as defined in and that are subject to the Sybase Open Watcom
*    Public License version 1.0 (the 'License'). You may not use this file
*    except in compliance with the License. BY USING THIS FILE YOU AGREE TO
*    ALL TERMS AND CONDITIONS OF THE LICENSE. A copy of the License is
*    provided with the Original Code and Modifications, and is also
*    available at www.sybase.com/developer/opensource.
*
*    The Original Code and all software distributed under the License are
*    distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
*    EXPRESS OR IMPLIED, AND SYBASE AND ALL CONTRIBUTORS HEREBY DISCLAIM
*    ALL SUCH WARRANTIES, INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF
*    MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR
*    NON-INFRINGEMENT. Please see the License for the specific language
*    governing rights and limitations under the License.
*
*  ========================================================================
*
* Description:  WHEN YOU FIGURE OUT WHAT THIS FILE DOES, PLEASE
*               DESCRIBE IT HERE!
*
****************************************************************************/


#include "variety.h"
#include <dos.h>

extern  int             _dosretax( int ax, int carry );

extern  short           DoDosxCall( void *in, void *out, void *sr );
#if !defined(__BIG_DATA__)
#pragma aux             DoDosxCall =               \
        0x55            /* push bp        -----. */\
        0x06            /* push es        ----.| */\
        0x53            /* push bx        ---.|| */\
        0x1e            /* push ds        --.||| */\
        0x52            /* push dx        -.|||| */\
        0x8e 0x07       /* mov es,[bx]     ||||| */\
        0x8b 0x6f 0x06  /* mov bp,6[bx]    ||||| */\
        0x8b 0x05       /* mov ax, [di]    ||||| */\
        0x8b 0x5d 0x02  /* mov bx,2[di]    ||||| */\
        0x8b 0x4d 0x04  /* mov cx,4[di]    ||||| */\
        0x8b 0x55 0x06  /* mov dx,6[di]    ||||| */\
        0x8b 0x75 0x08  /* mov si,8[di]    ||||| */\
        0x8b 0x7d 0x0a  /* mov di,10[di]   ||||| */\
        0x8e 0xdd       /* mov ds,bp       ||||| */\
        0xf8            /* clc             ||||| */\
        0xcd 0x21       /* int 021h        ||||| */\
        0x1e            /* push ds      --.||||| */\
        0x57            /* push di      -.|||||| */\
        0x89 0xe5       /* mov bp,sp     ||||||| */\
        0x8b 0x7e 0x04  /* mov di,4[bp]  ||||||| */\
        0x8e 0x5e 0x06  /* mov ds,6[bp]  ||||||| */\
        0x89 0x05       /* mov  [di],ax  ||||||| */\
        0x89 0x5d 0x02  /* mov 2[di],bx  ||||||| */\
        0x89 0x4d 0x04  /* mov 4[di],cx  ||||||| */\
        0x89 0x55 0x06  /* mov 6[di],dx  ||||||| */\
        0x89 0x75 0x08  /* mov 8[di],si  ||||||| */\
        0x8f 0x45 0x0a  /* pop 10[di]   -'|||||| */\
        0x58            /* pop ax (ds)  --'||||| */\
        0x5b            /* pop bx       ---'|||| */\
        0x5b            /* pop bx       ----'||| */\
        0x5b            /* pop bx       -----'|| */\
        0x89 0x47 0x06  /* mov 6[bx],ax       || */\
        0x8c 0x07       /* mov [bx],es        || */\
        0x1b 0xc0       /* sbb ax,ax          || */\
        0x07            /* pop es ------------'| */\
        0x5d            /* pop bp -------------' */\
        parm caller     [di] [dx] [bx] \
        value           [ax] \
        modify          [bx cx dx si di];
#else
#pragma aux             DoDosxCall =                 \
        0x1e            /* push ds */                \
        0x8e 0xdf       /* mov ds,di */              \
        0x55            /* push bp         */        \
        0x8e 0x07       /* mov es, [ bx ]  */        \
        0x8b 0x6f 0x06  /* mov bp, 6[ bx ] */        \
        0x52            /* push dx         */        \
        0x50            /* push ax         */        \
        0x1e            /* push ds         */        \
        0x53            /* push bx         */        \
        0x8e 0xd9       /* mov ds, cx      */        \
        0x8b 0x04       /* mov ax, [ si ]  */        \
        0x8b 0x5c 0x02  /* mov bx, 2[ si ] */        \
        0x8b 0x4c 0x04  /* mov cx, 4[ si ] */        \
        0x8b 0x54 0x06  /* mov dx, 6[ si ] */        \
        0x8b 0x7c 0x0a  /* mov di, a[ si ] */        \
        0x8b 0x74 0x08  /* mov si, 8[ si ] */        \
        0x8e 0xdd       /* mov ds, bp      */        \
        0xf8            /* clc             */        \
        0xcd 0x21       /* int 21          */        \
        0x1e            /* push ds         */        \
        0x56            /* push si         */        \
        0x89 0xe5       /* mov bp, sp      */        \
        0x8b 0x76 0x08  /* mov si, 8[ bp ] */        \
        0x8e 0x5e 0x0a  /* mov ds, a[ bp ] */        \
        0x5d            /* pop bp          */        \
        0x89 0x04       /* mov [ si ], ax  */        \
        0x89 0x5c 0x02  /* mov 2[ si ], bx */        \
        0x89 0x4c 0x04  /* mov 4[ si ], cx */        \
        0x89 0x54 0x06  /* mov 6[ si ], dx */        \
        0x89 0x6c 0x08  /* mov 8[ si ], bp */        \
        0x89 0x7c 0x0a  /* mov a[ si ], di */        \
        0x19 0xc0       /* sbb ax, ax      */        \
        0x5b            /* pop bx          */        \
        0x5e            /* pop si          */        \
        0x1f            /* pop ds          */        \
        0x8c 0x04       /* mov [ si ], es  */        \
        0x89 0x5c 0x06  /* mov 6[ si ], bx */        \
        0x5b            /* pop bx          */        \
        0x5b            /* pop bx          */        \
        0x5d            /* pop bp          */        \
        0x1f            /* pop ds */                 \
        parm caller [ si cx ] [ ax dx ] [ bx di ]    \
        value [ ax ]                                 \
        modify [ di es ];
#endif

_WCRTLINK int intdosx( union REGS *inregs, union REGS *outregs, struct SREGS *segregs )
{
    register short          status;

    status = DoDosxCall( inregs, outregs, segregs );
    outregs->x.cflag = status;
    _dosretax( outregs->x.ax, status );
    return( outregs->x.ax );
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?