Author: fireball Date: Sat Aug 11 13:41:06 2007 New Revision: 28282
URL: http://svn.reactos.org/svn/reactos?rev=28282&view=rev Log: Merge part of 26117 (typo fix), 26194
Modified: branches/winldr/arch/i386/hardware.c branches/winldr/include/video.h
Modified: branches/winldr/arch/i386/hardware.c URL: http://svn.reactos.org/svn/reactos/branches/winldr/arch/i386/hardware.c?rev=... ============================================================================== --- branches/winldr/arch/i386/hardware.c (original) +++ branches/winldr/arch/i386/hardware.c Sat Aug 11 13:41:06 2007 @@ -991,8 +991,8 @@ PartialDescriptor->Type = CmResourceTypeInterrupt; PartialDescriptor->ShareDisposition = CmResourceShareUndetermined; PartialDescriptor->Flags = CM_RESOURCE_INTERRUPT_LATCHED; - PartialDescriptor->u.Interrupt.Level = 0; - PartialDescriptor->u.Interrupt.Vector = 6; + PartialDescriptor->u.Interrupt.Level = 6; + PartialDescriptor->u.Interrupt.Vector = 0; PartialDescriptor->u.Interrupt.Affinity = 0xFFFFFFFF;
/* Set DMA channel */
Modified: branches/winldr/include/video.h URL: http://svn.reactos.org/svn/reactos/branches/winldr/include/video.h?rev=28282... ============================================================================== --- branches/winldr/include/video.h (original) +++ branches/winldr/include/video.h Sat Aug 11 13:41:06 2007 @@ -29,7 +29,7 @@
extern PVOID VideoOffScreenBuffer;
-USHORT BiosIsVesaSupported(VOID); // Implemented in i386vid.S, returns the VESA version +USHORT BiosIsVesaSupported(VOID); // Implemented in i386vid.c, returns the VESA version
PVOID VideoAllocateOffScreenBuffer(VOID); // Returns a pointer to an off-screen buffer sufficient for the current video mode