Ignore:
Timestamp:
May 28, 2000, 6:50:46 PM (25 years ago)
Author:
sandervl
Message:

update

File:
1 edited

Legend:

Unmodified
Added
Removed
  • sbliveos2/trunk/drv16/vddentry.asm

    r142 r151  
    103103_OSSIDC_ENTRY ENDP
    104104
     105        PUBLIC  _inpd
     106_inpd proc near
     107        in   eax, dx
     108        mov  dx, ax
     109        shr  eax, 16
     110        xchg ax, dx
     111        ret
     112_inpd endp
     113
     114        PUBLIC  _outpd
     115_outpd proc near
     116        mov ax, cx
     117        shl eax, 16
     118        mov ax, bx
     119        out dx, eax
     120        ret
     121_outpd endp
     122
    105123_TEXT   ENDS
    106124
Note: See TracChangeset for help on using the changeset viewer.