Ignore:
Timestamp:
Jun 7, 1999, 10:58:22 PM (26 years ago)
Author:
sandervl
Message:

* empty log message *

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/kernel32/except.asm

    r4 r46  
    1 ; $Id: except.asm,v 1.1 1999-05-24 20:19:46 ktk Exp $
    2 
    31;/*
    42; *
     
    157155        PUBLIC getEAX
    158156        PUBLIC getEBX
    159 getEAX proc near
     157getEAX  proc near
    160158        ret
    161 getEAX endp
     159getEAX  endp
    162160
    163 getEBX proc near
     161getEBX  proc near
    164162        mov  eax, ebx
    165163        ret
    166 getEBX endp
     164getEBX  endp
     165
     166        PUBLIC GetFS
     167GetFS   proc near
     168        mov     eax, fs
     169        ret
     170GetFS   endp
     171
     172        PUBLIC SetFS
     173SetFS   proc near
     174        mov     eax, [esp+4]
     175        mov     fs, eax
     176        ret
     177SetFS   endp
    167178
    168179CODE32          ENDS
Note: See TracChangeset for help on using the changeset viewer.