Changeset 2613 for trunk/src/kernel32


Ignore:
Timestamp:
Feb 3, 2000, 7:56:39 PM (26 years ago)
Author:
sandervl
Message:

export cpu feature dword + functions

Location:
trunk/src/kernel32
Files:
1 deleted
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/kernel32/KERNEL32.DEF

    r2554 r2613  
    1 ; $Id: KERNEL32.DEF,v 1.67 2000-01-29 10:42:37 sandervl Exp $
     1; $Id: KERNEL32.DEF,v 1.68 2000-02-03 18:56:38 sandervl Exp $
    22
    33;Created by BLAST for IBM's compiler
     
    10731073    IsExeStarted__Fv     @2001
    10741074    CheckCurFS           @2002
     1075    SupportsCPUID        @2003
     1076    GetCPUFeatures       @2004
     1077    CPUFeatures          @2005
    10751078
    10761079    GetDisplayCodepage__Fv                  @3000
    10771080    GetWindowsCodepage__Fv                  @3001
    1078 
     1081   
     1082
  • trunk/src/kernel32/cpu.cpp

    r2044 r2613  
    1 /* $Id: cpu.cpp,v 1.4 1999-12-09 11:59:27 sandervl Exp $ */
     1/* $Id: cpu.cpp,v 1.5 2000-02-03 18:56:39 sandervl Exp $ */
    22/*
    33 * Odin win32 CPU apis
     
    2020#include "winreg.h"
    2121#include "debugtools.h"
    22 #include "cpuhlp.h"
     22#include <cpuhlp.h>
    2323#include "initsystem.h"
    2424
  • trunk/src/kernel32/cpuhlp.asm

    r1815 r2613  
    1 ; $Id: cpuhlp.asm,v 1.1 1999-11-23 19:31:35 sandervl Exp $
     1; $Id: cpuhlp.asm,v 1.2 2000-02-03 18:56:39 sandervl Exp $
    22
    33;/*
     
    99; */
    1010.586
    11                 NAME    except
     11                NAME    cpuhlp
     12
     13DATA32  SEGMENT DWORD PUBLIC USE32 'DATA'
     14        ASSUME  DS:FLAT,SS:FLAT
     15
     16        PUBLIC  CPUFeatures
     17CPUFeatures     dd 0
     18
     19DATA32  ENDS
    1220
    1321CODE32          SEGMENT DWORD PUBLIC USE32 'CODE'
     
    7785        mov     eax, edx       
    7886
     87        mov     [CPUFeatures], eax
     88
    7989        pop     edx
    8090        pop     ecx
  • trunk/src/kernel32/makefile

    r2311 r2613  
    1 # $Id: makefile,v 1.79 2000-01-03 21:36:10 sandervl Exp $
     1# $Id: makefile,v 1.80 2000-02-03 18:56:39 sandervl Exp $
    22
    33#
     
    162162
    163163initterm.OBJ: .\initterm.cpp initterm.h  $(PDWIN32_INCLUDE)\heapshared.h  mmap.h directory.h hmdevio.h initsystem.h $(PDWIN32_INCLUDE)\heapcode.h
    164 initsystem.obj: initsystem.cpp cpuhlp.h initsystem.h $(PDWIN32_INCLUDE)\misc.h directory.h $(PDWIN32_INCLUDE)\versionos2.h
     164initsystem.obj: initsystem.cpp $(PDWIN32_INCLUDE)\cpuhlp.h initsystem.h $(PDWIN32_INCLUDE)\misc.h directory.h $(PDWIN32_INCLUDE)\versionos2.h
    165165
    166166
     
    407407heapshared.obj: heapshared.cpp $(PDWIN32_INCLUDE)\heapshared.h
    408408heapcode.obj: heapcode.cpp $(PDWIN32_INCLUDE)\heapshared.h $(PDWIN32_INCLUDE)\heapcode.h
    409 cpu.obj: cpu.cpp cpuhlp.h
     409cpu.obj: cpu.cpp $(PDWIN32_INCLUDE)\cpuhlp.h
    410410cpuhlp.obj: cpuhlp.asm
    411411environ.obj: environ.cpp $(PDWIN32_INCLUDE)\misc.h
Note: See TracChangeset for help on using the changeset viewer.