Ignore:
Timestamp:
Dec 18, 2011, 10:28:22 PM (14 years ago)
Author:
dmik
Message:

Merge branch gcc-kmk to trunk.

Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk

    • Property svn:ignore
      •  

        old new  
        1 bin
        2 Makefile.inc
         1env.cmd
         2LocalConfig.kmk
    • Property svn:mergeinfo set to
      /branches/gcc-kmkmergedeligible
  • trunk/src/kernel32/FastInfoBlocksa.asm

    r9910 r21916  
    2626;*******************************************************************************
    2727DATA32 segment use32 dword public 'DATA'
    28 _gpfibLIS       dd 0
    29 _gfpfibLIS      dd 0
    30 _gpfibGIS       dd 0
    31 _gfpfibGIS      dd 0
    32 _gpfibPIB       dd 0
     28__gpfibLIS       dd 0
     29__gfpfibLIS      dd 0
     30__gpfibGIS       dd 0
     31__gfpfibGIS      dd 0
     32__gpfibPIB       dd 0
    3333DATA32 ends
    34 
    35 extrn fibDumpAll:near
    3634
    3735
     
    3937;* Exported Symbols                                                            *
    4038;*******************************************************************************
    41 public _gpfibLIS
    42 public _gfpfibLIS
    43 public _gpfibGIS
    44 public _gfpfibGIS
    45 public _gpfibPIB
    46 public fibInit
     39public __gpfibLIS
     40public __gfpfibLIS
     41public __gpfibGIS
     42public __gfpfibGIS
     43public __gpfibPIB
     44public _fibInit
    4745
    4846
     
    6260; @remark
    6361;
    64 fibInit proc near
     62_fibInit proc near
    6563    push    ebp
    6664    mov     ebp, esp
    67     cmp     _gpfibPIB, 0
     65    cmp     __gpfibPIB, 0
    6866    jz      @doinit
    6967    jmp     @exit_ok
     
    114112    push    ss
    115113    push    dx
     114IFDEF __EMX__
     115    extrn _16_Dos16GetInfoSeg:far
     116    call    _16_Dos16GetInfoSeg
     117ELSE
    116118    extrn DOS16GETINFOSEG:far
    117119    call    DOS16GETINFOSEG
     120ENDIF
    118121    pop     dx                          ; sel LIS
    119122    pop     cx                          ; sel GIS
     
    148151    ; Store far pointers.
    149152    ;
    150     mov     word ptr [_gfpfibLIS + 2], dx
    151     mov     word ptr [_gfpfibGIS + 2], cx
     153    mov     word ptr [__gfpfibLIS + 2], dx
     154    mov     word ptr [__gfpfibGIS + 2], cx
    152155
    153156    ;
     
    156159    and     edx, 0fff8h
    157160    shl     edx, 13
    158     mov     [_gpfibLIS], edx
     161    mov     [__gpfibLIS], edx
    159162
    160163    and     ecx, 0fff8h
    161164    shl     ecx, 13
    162     mov     [_gpfibGIS], ecx
     165    mov     [__gpfibGIS], ecx
    163166
    164167
     
    178181    pop     eax                         ; ptib, ignore.
    179182    pop     eax                         ; ppib
    180     mov     [_gpfibPIB], eax
     183    mov     [__gpfibPIB], eax
    181184
    182185    ;
     
    188191    leave
    189192    ret
    190 fibInit endp
     193_fibInit endp
    191194
    192195
Note: See TracChangeset for help on using the changeset viewer.