|
From: Peter on 22 Nov 2005 05:15 I have ndis IM driver - tested on w2k+sp4,w2k3+sp1,wxp+sp2 on 32 processors. All is ok. When I install this driver on w2k+sp4 on 64 bit processor (Intel EM64T) driver crashes, no blue screen appears and system restarts without blue screen. Question: When I want to use ndis IM driver on 32 windows systems installed on 64 bit processors - do I need to add some defines, or does need my driver code some adjustments for running on 64 bit processor ? (not 64 bit windows, only on 64 bit processor) Peter
From: Mark Roddy on 22 Nov 2005 07:22 On Tue, 22 Nov 2005 02:15:04 -0800, "Peter" <Peter(a)discussions.microsoft.com> wrote: >I have ndis IM driver - tested on w2k+sp4,w2k3+sp1,wxp+sp2 on 32 processors. >All is ok. > >When I install this driver on w2k+sp4 on 64 bit processor (Intel EM64T) >driver crashes, no blue screen appears and system restarts without blue >screen. > >Question: >When I want to use ndis IM driver on 32 windows systems installed on 64 bit >processors - do I need to add some defines, or does need my driver code some >adjustments for running on 64 bit processor ? (not 64 bit windows, only on 64 >bit processor) > >Peter Stupid question: you built your driver for 64bit mode right? ===================== Mark Roddy DDK MVP Windows Vista/2003/XP/2000 Consulting Device and Filesystem Drivers Hollis Technology Solutions 603-321-1032 www.hollistech.com
From: Susaant on 22 Nov 2005 08:21 If he is using a 32 bit OS he does not need to compile it in 64 bit mode. The reason the machine is restarting without blue screen is because you will have to set the options for it correctly. Am not sure of win2k but on my XP setup in Properties of 'My computer' -> Advanced -> Startup and recovery -> Settings Here uncheck the option of 'restart automatically' in system error case. This should give you a blue screen to debug your problem. Susaant Mark Roddy wrote: > On Tue, 22 Nov 2005 02:15:04 -0800, "Peter" > <Peter(a)discussions.microsoft.com> wrote: > > >I have ndis IM driver - tested on w2k+sp4,w2k3+sp1,wxp+sp2 on 32 processors. > >All is ok. > > > >When I install this driver on w2k+sp4 on 64 bit processor (Intel EM64T) > >driver crashes, no blue screen appears and system restarts without blue > >screen. > > > >Question: > >When I want to use ndis IM driver on 32 windows systems installed on 64 bit > >processors - do I need to add some defines, or does need my driver code some > >adjustments for running on 64 bit processor ? (not 64 bit windows, only on 64 > >bit processor) > > > >Peter > > Stupid question: you built your driver for 64bit mode right? > ===================== > Mark Roddy DDK MVP > Windows Vista/2003/XP/2000 Consulting > Device and Filesystem Drivers > Hollis Technology Solutions 603-321-1032 > www.hollistech.com
From: Ivan Bublikov on 22 Nov 2005 10:05 Is this supposed to mean that the AMD64 Windows will happily load i386 drivers? (I know first-hand that it won't load ia64 drivers :-) "Mark Roddy" <markr(a)hollistech.com> wrote in message news:7b36o15vnliv36hoafslohlqt7ne4jlpvv(a)4ax.com... > On Tue, 22 Nov 2005 02:15:04 -0800, "Peter" > <Peter(a)discussions.microsoft.com> wrote: > >>I have ndis IM driver - tested on w2k+sp4,w2k3+sp1,wxp+sp2 on 32 >>processors. >>All is ok. >> >>When I install this driver on w2k+sp4 on 64 bit processor (Intel EM64T) >>driver crashes, no blue screen appears and system restarts without blue >>screen. >> >>Question: >>When I want to use ndis IM driver on 32 windows systems installed on 64 >>bit >>processors - do I need to add some defines, or does need my driver code >>some >>adjustments for running on 64 bit processor ? (not 64 bit windows, only on >>64 >>bit processor) >> >>Peter > > Stupid question: you built your driver for 64bit mode right? > ===================== > Mark Roddy DDK MVP > Windows Vista/2003/XP/2000 Consulting > Device and Filesystem Drivers > Hollis Technology Solutions 603-321-1032 > www.hollistech.com
From: Bill McKenzie on 22 Nov 2005 11:30
EMT64 processors will happily run 32-bit versions of Windows in which case, yes 32-bit drivers will load and will presumably be quite joyful. Bill M. "Ivan Bublikov" <ivanbublikov(a)yahoo.com> wrote in message news:uSWoxY37FHA.1184(a)TK2MSFTNGP12.phx.gbl... > Is this supposed to mean that the AMD64 Windows will happily load i386 > drivers? (I know first-hand that it won't load ia64 drivers :-) > > "Mark Roddy" <markr(a)hollistech.com> wrote in message > news:7b36o15vnliv36hoafslohlqt7ne4jlpvv(a)4ax.com... >> On Tue, 22 Nov 2005 02:15:04 -0800, "Peter" >> <Peter(a)discussions.microsoft.com> wrote: >> >>>I have ndis IM driver - tested on w2k+sp4,w2k3+sp1,wxp+sp2 on 32 >>>processors. >>>All is ok. >>> >>>When I install this driver on w2k+sp4 on 64 bit processor (Intel EM64T) >>>driver crashes, no blue screen appears and system restarts without blue >>>screen. >>> >>>Question: >>>When I want to use ndis IM driver on 32 windows systems installed on 64 >>>bit >>>processors - do I need to add some defines, or does need my driver code >>>some >>>adjustments for running on 64 bit processor ? (not 64 bit windows, only >>>on 64 >>>bit processor) >>> >>>Peter >> >> Stupid question: you built your driver for 64bit mode right? >> ===================== >> Mark Roddy DDK MVP >> Windows Vista/2003/XP/2000 Consulting >> Device and Filesystem Drivers >> Hollis Technology Solutions 603-321-1032 >> www.hollistech.com > |