Company Sells 'Turbo' 1.4GHz Xbox
cdneng2 writes "The Inquirer has an
article about a TaiPei company that is selling a
modified Xbox running a 1.4GHz Celeron, versus the console's 733MHz
Pentium III. The firm, Friendtech is also offering an Xbox
Mod that provides S-Video, 5.1 Surround, and a hard disk upgrade
in one package." There are some pictures of the prototype on the official site, although it's unclear if the legally uncertain mod will make much practical difference to native Xbox games (Polygonmag claims "the prototype loaded data at nearly twice the speed of a retail Xbox.")
I wonder if it will impact on games in terms of timing. Some games are programmed without any timing enforced (still?), they just ran as fast as the console can pump them. I remember that back on the Nintendo 64 X-treme G (the super-fast bike racing game) ran much faster (and therefore played harder) on my brothers console, than on my friends - it seems that in the year between them each buying consoles Nintendo had improved the processor.
Actually, this will probably break most games. In the Xbox games that I've been involved with (two of them), we have hardcoded our timers. The technical details:
There's a standard Intel CPU instruction that returns a clockcycle count (the RDTSC instruction). The Xbox is a 733MHz machine, so the number returned by RDTSC advances by 733 million every second (eventually overflowing).
If you subtract this number from the number you got on the previous frame, then divide by your clockspeed (in this case 733 million), you get the number of seconds that have elapsed since the last frame - it's a solid timer, and very accurate.
Here's the catch: On the PC you have to calibrate this value, which can take a few seconds. On the Xbox we hard-coded the value of the clockspeed - at 733 million cycles per second. If you change the CPU to 1.4GHz, calculations will still be made for a 733MHz CPU.
Most likely case in my games: the game will not know how to throttle itself correctly. It will try to run the game at twice the speed (think a videotape on fast forward). The video hardware won't be able to keep up and graphical details will be dropped because the CPU thinks the video hardware is taking twice as long to render a scene (as it thinks it's only managing 15fps rather than 30fps).
Best case in other games: Less frame hitches, but nothing much happens because it's still waiting for the vertical sync of the screen at 60 or 30 fps.
Absolute worst case: Microsoft will detect the larger 80GB drive (or the enhanced CPU speed) in an Xbox Live update. Your Xbox will be banned from Xbox Live forever, or possibly nuked so that you can't even boot it up anymore. If you attach it to their network, you play by their rules - period.
Besides, If a game is CPU bound, it's not been optimized properly. My recommendation: The "Turbo" Xbox will not be worth it, and may not work at all. Get a regular Xbox or save your money for Xbox 2.