Re: Hauppauge WinTV-HVR 1300 completely unreliable software!
Perhaps that is why it blue screened.
Read the 0x21 dump output, and find IRQ=5 in the cause field.
Attempting to read 0x000 is in the protected IRQ offset tables in base ram.
Again, this is a stupid coder problem.
More than likely a local variable overflow such as sticking a 64 bit value into a 32 bit variable, and overwriting the executing code.
Originally posted by toastygoodness
View Post
Read the 0x21 dump output, and find IRQ=5 in the cause field.
Attempting to read 0x000 is in the protected IRQ offset tables in base ram.
Again, this is a stupid coder problem.
More than likely a local variable overflow such as sticking a 64 bit value into a 32 bit variable, and overwriting the executing code.
Comment