Changeset 27
- Timestamp:
- Sep 24, 2010, 5:50:44 PM (15 years ago)
- Location:
- trunk
- Files:
-
- 3 added
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk
-
Property svn:ignore
set to
*.add
*.obj
*.cod
*.lst
*.i
*.mbr
-
Property svn:ignore
set to
-
trunk/src
-
Property svn:ignore
set to
*.add
*.obj
*.cod
*.lst
*.i
*.mbr
-
Property svn:ignore
set to
-
trunk/src/include
-
Property svn:ignore
set to
*.add
*.obj
*.cod
*.lst
*.i
*.mbr
-
Property svn:ignore
set to
-
trunk/src/os2ahci
-
Property svn:ignore
set to
*.add
*.obj
*.cod
*.lst
*.i
*.mbr
-
Property svn:ignore
set to
-
trunk/src/os2ahci/Makefile
r26 r27 22 22 ############################################################################### 23 23 # Tool Chain 24 # 24 25 25 26 AS = $(DDK)\tools\alp.exe 26 27 CC = cl 27 LD = link 28 LD = $(DDK)\base\tools\link.exe 29 MAPSYM = $(DDK)\base\tools\mapsym.exe 30 BLDLEVEL = ..\..\tools\bldlvl.cmd 28 31 29 32 AFLAGS = -Mb … … 69 72 ctxhook.obj 70 73 71 INCS = os2ahci.h ahci.h 74 INCS = os2ahci.h ahci.h version.h 72 75 73 76 … … 76 79 clean: 77 80 rm -f $(OBJS) $(TARGET) 81 78 82 79 83 ############################################################################### … … 106 110 107 111 $(TARGET): $(OBJS) os2ahci.def Makefile 112 $(BLDLEVEL) os2ahci.def version.h 108 113 $(LD) $(LFLAGS) $(OBJS),$(TARGET),$*.map,$(LIB_DIRS) $(LIBS),$*.def 109 mapsymos2ahci114 $(MAPSYM) os2ahci 110 115 111 116 -
trunk/src/os2ahci/os2ahci.def
r13 r27 1 1 library os2ahci 2 description 'OS2 AHCIDriver'2 Description '$@#thi.guten (www.thiguten.de):1.00.20100924#@OS/2 AHCI Adapter Device Driver' 3 3 protmode 4 4 … … 16 16 _z_text CLASS 'CODE' IOPL 17 17 18 -
trunk/src/os2ahci/os2ahci.h
r26 r27 58 58 59 59 #include "ahci.h" 60 #include "version.h" 60 61 61 62 /* -------------------------- macros and constants ------------------------- */ 62 63 63 #define VERSION 100 /* driver version (2 implied decimals) */64 64 #define MAX_AD 8 /* maximum number of adapters */ 65 65
Note:
See TracChangeset
for help on using the changeset viewer.