Changeset 176 for sbliveos2/trunk
- Timestamp:
- Apr 14, 2001, 7:03:36 PM (24 years ago)
- Location:
- sbliveos2/trunk
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
sbliveos2/trunk/ChangeLog
r173 r176 4 4 - *: makefile updates 5 5 You must run Configure.cmd before building the driver 6 - sblive: compile fixes 6 7 7 8 2001-03-23: Sander van Leeuwen <sandervl@xs4all.nl> -
sbliveos2/trunk/drv16/init.cpp
r152 r176 71 71 72 72 static char szSBLive[] = "SoundBlaster Live! MMPM/2 Audio Driver v"SBLIVE_VERSION; 73 static char szCopyRight[] = "Copyright 2000 Sander van Leeuwen (sandervl@xs4all.nl)";73 static char szCopyRight[] = "Copyright 2000-2001 Sander van Leeuwen (sandervl@xs4all.nl)"; 74 74 static char NEWLINE[] = "\r\n"; 75 75 static char szSBLiveNotFound[] = "SB Live! hardware not detected!"; -
sbliveos2/trunk/drv16/makefile.os2
r174 r176 69 69 $(OBJDIR)\$(NAME).sys: $(OBJS) $(OBJDIR)\$(NAME).lrf makefile.os2 $(%DDK)\BASE\lib\os2286.lib $(SBLIVE_LIB)\runtime.lib $(%DDK)\BASE\src\dev\resource\rmcalls\rmcalls.lib 70 70 $(LINK) @$(OBJDIR)\$(NAME).lrf 71 copy $(OBJDIR)\$(NAME).sys ..\bin71 copy $(OBJDIR)\$(NAME).sys $(SBLIVE_BIN) 72 72 73 73 $(OBJDIR)\$(NAME).sym: $(OBJDIR)\$(WMAPNAME) … … 76 76 mapsym $(NAME).MAP 77 77 cd ..\.. 78 copy $(OBJDIR)\$(NAME).sym ..\bin78 copy $(OBJDIR)\$(NAME).sym $(SBLIVE_BIN) 79 79 80 80 clean: -
sbliveos2/trunk/drv32/init.c
r151 r176 48 48 #endif 49 49 const char szCopyRight1[]= "Copyright 1999, 2000 Creative Labs, Inc.\r\n"; 50 const char szCopyRight2[]= "Copyright 2000 Sander van Leeuwen (OS/2 Port)\r\n\r\n";50 const char szCopyRight2[]= "Copyright 2000-2001 Sander van Leeuwen (OS/2 Port)\r\n\r\n"; 51 51 const char szCodeStartEnd[] = "Code 0x%0x - 0x%0x\r\n\r\n"; 52 52 -
sbliveos2/trunk/drv32/makefile.os2
r175 r176 92 92 !ifdef KEE 93 93 copy $(OBJDIR)\$(TARGET).sys $(SBLIVE_BIN)\$(TARGET)kee.sys 94 copy $(OBJDIR)\$(TARGET).sys $(SBLIVE_BIN_)\$(TARGET)kee.sys 94 95 !else 95 96 copy $(OBJDIR)\$(TARGET).sys $(SBLIVE_BIN)\$(TARGET)w4.sys 97 copy $(OBJDIR)\$(TARGET).sys $(SBLIVE_BIN_)\$(TARGET)w4.sys 96 98 !endif 97 copy $(OBJDIR)\$(TARGET).sys $(SBLIVE_BIN)98 99 99 100 $(OBJDIR)\$(TARGET).sym: -
sbliveos2/trunk/sblive/cardmi.h
r151 r176 82 82 83 83 /* For MIDI state machine */ 84 u 8status; /* For MIDI running status */85 u 8fstatus; /* For 0xFn status only */84 u32 status; /* For MIDI running status */ 85 u32 fstatus; /* For 0xFn status only */ 86 86 midi_in_state curstate; 87 87 midi_in_state laststate; -
sbliveos2/trunk/sblive/emu_wrapper.h
r142 r176 35 35 #define GET_INODE_STRUCT() struct inode *inode = file->f_dentry->d_inode 36 36 37 #define tasklet_struct tq_struct 38 37 39 #ifdef TARGET_OS2 38 40 void tasklet_hi_schedule(struct tasklet_struct *t); … … 47 49 (t)->data = (void *)(d) 48 50 49 #define tasklet_struct tq_struct50 51 51 52 #ifdef TARGET_OS2
Note:
See TracChangeset
for help on using the changeset viewer.