source: trunk/src/win32k/kKrnlLib/stub.asm@ 8081

Last change on this file since 8081 was 8074, checked in by bird, 24 years ago

Initial coding.

File size: 743 bytes
Line 
1; $Id: stub.asm,v 1.1 2002-03-10 05:22:32 bird Exp $
2;
3; stub - make sure everything is included.
4;
5; Copyright (c) 2002 knut st. osmundsen (bird@anduin.net)
6;
7; Project Odin Software License can be found in LICENSE.TXT
8;
9 .386p
10
11
12;
13; Include files
14;
15ifdef KKRNLLIB
16 include devsegdf.inc
17endif
18
19
20;
21; extrns
22;
23ifdef KKRNLLIB
24 extrn _Device_Help:dword
25 extrn callTab:dword ; dev32/calltaba.asm
26 extrn _dev0Init:far ; dev16/d16init.c
27 extrn aKrnlSymDB32:dword ; dev32/SymDB32.asm
28 extrn _aDevHdrs:dword ; dev16/d16strat.c
29endif
30ifdef EXTRACT
31 extrn _main:far
32endif
33
34
35CODE32 segment
36 assume cs:CODE32, ds:flat, ss:nothing, es:nothing
37 .386p
38
39CODE32 ends
40
41
42END
Note: See TracBrowser for help on using the repository browser.