Changeset 8179 for branches


Ignore:
Timestamp:
Apr 1, 2002, 2:51:47 PM (24 years ago)
Author:
bird
Message:

Moved device header to devfirst.asm

Location:
branches/splittup/src/win32k/src
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/splittup/src/win32k/src/d16strat.c

    r8160 r8179  
    1 /* $Id: d16strat.c,v 1.1.2.2 2002-04-01 09:57:10 bird Exp $
     1/* $Id: d16strat.c,v 1.1.2.3 2002-04-01 12:51:47 bird Exp $
    22 *
    33 * d16strat.c - 16-bit strategy routine, device headers, device_helper (ptr)
     
    3939*   Global Variables                                                           *
    4040*******************************************************************************/
     41#if 0 /* moved to devFirst.asm */
    4142DDHDR aDevHdrs[1] = /* This is the first piece data in the driver!!!!!!! */
    4243{
     
    5455    }
    5556};
     57#endif
    5658
    5759
  • branches/splittup/src/win32k/src/devfirst.asm

    r8160 r8179  
    1 ; $Id: devfirst.asm,v 1.1.2.2 2002-04-01 09:57:12 bird Exp $
     1; $Id: devfirst.asm,v 1.1.2.3 2002-04-01 12:51:47 bird Exp $
    22;
    33; DevFirst - entrypoint and segment definitions
     
    1313;
    1414    include devsegdf.inc
     15    include devhdr.inc
    1516    include sas.inc
    1617
     
    264265DATA16 segment
    265266DATA16START label byte ; no string here!!
     267aDevHdrs: ;DDHDR aDevHdrs[1] /* This is the first piece data in the driver!!!!!!! */
     268;
     269; device 1
     270;
     271    dw size SysDev3                     ; NextHeader (offset)
     272    dw seg aDevHdrs                     ; NextHeader (selector)
     273    dw DEVLEV_3 or DEV_30 or DEV_CHAR_DEV ; SDevAtt
     274    dw offset _strategyAsm              ; StrategyEP
     275    dw 0                                ; InterruptEP
     276    db "$win32k "                       ; DevName
     277    dw 0                                ; SDevProtCS
     278    dw 0                                ; SDevProtDS
     279    dw 0                                ; SDevRealCS
     280    dw 0                                ; SDevRealDS
     281    dd DEV_16MB or DEV_IOCTL2           ; SDevCaps
    266282DATA16 ends
    267283
Note: See TracChangeset for help on using the changeset viewer.