Cartesius00
Cartesius00

Reputation: 24364

32bit vs 64bit drivers

are there any specifics when developing a device driver (kernel-mode) on Windows 7 32 bit or Windows 7 64 bit? Can I develop on some platform and prepare builds to run on the other one? Thank you.

Upvotes: 3

Views: 267

Answers (4)

goldenmean
goldenmean

Reputation: 18966

Here are some possible source code bugs, which could arise while going from 32-bit to 64bit versions.

Upvotes: 0

Steve-o
Steve-o

Reputation: 12866

That's what MSDN is for: 64-bit System Design

http://msdn.microsoft.com/en-us/windows/hardware/gg566940

Upvotes: 1

Ilya
Ilya

Reputation: 5613

If you don't do anything funny, producing a 64-bit driver shouldn't require any changes except for a rebuild.

Upvotes: 0

Aaron Klotz
Aaron Klotz

Reputation: 11585

You need the Windows Driver Kit. Yes, you should be able to cross-compile.

Upvotes: 2

Related Questions