Page 1 of 1

ver. 1.0.0 - DONT WORK AT ALL

Posted: Mon Jun 28, 2010 9:15 am
by ljsvjlfjnjj
Im running Win7Pro on AMD Barton 2500+ with 2GigDDR and it wont even start:

Code: Select all

 Problem Event Name:    APPCRASH
  Application Name:     SplashPro.exe
  Application Version:  1.0.0.0
  Application Timestamp:        4c220e1f
  Fault Module Name:    SplashPro.exe
  Fault Module Version: 1.0.0.0
  Fault Module Timestamp:       4c220e1f
  Exception Code:       c000001d
  Exception Offset:     00019b44
  OS Version:   6.1.7600.2.0.0.256.48
My guess is, its the way you used MOV commands to move 64bit data from xmm1 to xmm2 and vice versa..
please fix it so i can try it.

Thank you!

Re: ver. 1.0.0 - DONT WORK AT ALL

Posted: Mon Jun 28, 2010 9:46 am
by ljsvjlfjnjj
I digged up exception explanation from the Web. It looks you guys did not implement a check if CPU supports SSE2 instruction set, before using it. E.g. if cpu does not support SSE2 instruction set, you chud run it in some kind of compatibility mode to ensure it does work on all cpus.

Please fix this!

Re: ver. 1.0.0 - DONT WORK AT ALL

Posted: Mon Jun 28, 2010 12:09 pm
by metal03326
Same here - Sempron 2500+

Re: ver. 1.0.0 - DONT WORK AT ALL

Posted: Mon Jun 28, 2010 1:01 pm
by Florin64x
metal03326 wrote:Same here - Sempron 2500+
this cpu dont have sse2. :)

Re: ver. 1.0.0 - DONT WORK AT ALL

Posted: Mon Jun 28, 2010 1:05 pm
by metal03326
Florin64x wrote:
metal03326 wrote:Same here - Sempron 2500+
this cpu dont have sse2. :)
Yes, I know - all Socket A processors don't. I'm just saying this so there are more people to complain about this. If it's only one person, I doubt someone will do a thing about it ;)

Re: ver. 1.0.0 - DONT WORK AT ALL

Posted: Mon Jun 28, 2010 1:17 pm
by soulburner
The hardware requirements should be more specific about CPU features. At least the installer (not the program itself, because it's already installed and the user is angry ;)) should detect whether the CPU has SSE2 and continue or abort the installation accordingly.

GHOST: thanx for this suggestion, we will try to add this feature soon.