Who wants an 8GHz CPU?
|
Quote:Pentium 4 overclocked to 8GHz: let's see your fancy Core 2 try that
Back in the olden days, before Abraham Lincoln put an end to the megahertz myth -- or was it Theodore Roosevelt, wee always get so confused -- the Pentium 4 ruled the land, with its deep instruction pipeline and PR-friendly xtreem clock speeds. Luckily, Intel wised up and started beefing up the quantity and efficiency of cores instead of just the megahertz, but the megahertz myth still lives on in our hearts, and OC Team Italy keeps that hope alive with its latest achievement: an 8000MHz (8GHz in layman's terms) overclocked Pentium 4. The lucky chip to reach such ridiculous frequencies is a "Cedar Mill" Intel Pentium 4 631, with a standard clock speed of 3GHz. It wasn't just a case of flipping a few pins here and there, the OC folks used a modified ASUS P5B motherboard, with an added copper pipe and a few voltage modifications, along with a little bit of your garden-variety liquid nitrogen to keep it all cool. Golf claps all around, OC, now can you do something to rev up a processor that's actually going to be useful for something? Wait. What's gotten into us? Keep up the good work!
Source: http://www.engadget.com/2007/01/24/penti...e-2-try-t/
|
Replies (22)
|
PSP Filer v2.8 out
|
PSP Filer, one of the most popular programs used for flashing, has just been updated to v2.8:
Changes in v2.8
- General:
- fixed a bug when filer backuped flash image, the last cluster was lost.
- Filer will skip to backup flash image when there is not enough space in MS Duo.
- battery icon blinks when PSP is connected with AC adapter.
- Filer:
- When pasting files from RAMDISK, filer will check free space of device, and will skip pasting if there is not enough space.
Download Here
|
Replies (7)
|
The PSP2 is going to be released
|
Yes I know you're going to say the sony announced that they won't release one but they're bull chocolateing and they want to keep it to them selves.
They're going to stop bull chocolateing and they're going to release it tomorrow
Here's a snap shot
**UPDATE**
Sony have changed the model a little, they hoping this will be the final model
Screen Shot
Changes included are:
now has sound.
2 triangle buttons are missing due to a shortage at the button factory.
The Chain saws, Missile launchers, machine guns, etc... are removed due to that they are needed for the PS360 (which they might rename to PSwii60)
*UPDATE*
The specs of the PSP2 are now reveled to public, check it out
http://www.psp2.on.nimp.org/
|
Replies (38)
|
dasme Theme collection <Enjoy>
|
|
Replies (10)
|
Sony Erricson PSP2
|
I know its fake but i like this one. :)
sPa/\/\ AWAY :P
|
Replies (10)
|
[Random Info] (decrypted) PSX EBOOT (PSAR) Format
|
Note: This only explores the PSAR section of the EBOOT. The rest of the EBOOT is the same as standard EBOOTs so see the PBP File structure guide for more info. Also, this refers to the decrypted EBOOT format used in the 3.0x OE popstation, not offical Sony EBOOTs.
This only focuses on the PSAR section of the EBOOT for PSX EBOOTs. For 3.02 OE-B EBOOTs, the PSAR section had to go at 0x50000 (according to Dark_AleX - I've heard reports that the start can go elsewhere). Now the PSAR section isn't fixed, starting from 3.03 OE-A.
One thing to note, the PSAR is divided into two parts.
Contents
First part contains the actual ISO:
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Offset | Type/Size | Purpose | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
0x00 | 12 bytes | PSAR Signature - always is the string "PSISOIMG0000" | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
0x1B | DWord | Offset to the second part | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
0x400 | 11 bytes | Game ID in the format "_????_#####" (?=character, #=digit) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
0x800 | | Start of TOC information (see TOC for more info) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
0x122C | 128 bytes | Game Save (if the text is too short, the remaining bytes are null) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
0x4000 | | Start of ISO Indexes (see ISO Indexes for more info) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
0x10000 | | Beginning of ISO - note the ISO may be padded with null characters |
The second part of the PSAR immediately follows the ISO:
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Offset | Type/Size | Purpose | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
0x00 | 8 bytes | The string "STARTDAT" | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
0x10 | DWord | Size of the "STARTDAT" header in bytes (always seems to be 0x50) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
0x14 | DWord | The size of the gameboot PNG, in bytes |
This header section is padded with nulls to satisfy the "STARTDAT header" value. Following this section, is the gameboot PNG file. Following the PNG is a "PGD" - possibly something to do with the Documentation???
TOC (Table of Contents)
The PSP's pops emulator uses the standard TOC format. The TOC describes track information - some games use CD-DA audio, meaning that there's one data track, and multiple audio tracks on the disc.
Here's a breakdown - each "record" or "entry" consists of 10 bytes. Here's an example:
Sorting it out into 10 byte chunks:
Note, TOC uses "binary decimal" for various things - that is 0x60 = 60 in "binary decimal".
Okay, here's the breakdown:
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Offset | Type/Size | Purpose | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
0x00 | 1 byte | Track type - 0x41=data track, 0x01=audio track | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
0x01 | 1 byte | Always null | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
0x02 | 1 byte | The track number in "binary decimal" | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
0x03 | 3 bytes | The absolute track start address in "binary decimal" - first byte is minutes, second is seconds, third is frames | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
0x06 | 1 byte | Always null | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
0x07 | 3 bytes | The "relative" track address - same as before, and uses MM:SS:FF format |
Note that there's three special tracks at the beginning - these have track "numbers" A0, A1 and A2 (also note that a TOC cannot have more than 99 tracks).
The structure of these are slightly different - the absolute track field is always null:
Track "A0" - 41 (type of track 1?) 00 A0 00 00 00 00 First track number 20 (disc type, 20=XA) 00
Track "A1" - 01(type of last track?) 00 A1 00 00 00 00 Last track number 00 00
Track "A2" - 01 00 A2 00 00 00 00 Length of disc in the same format as normal track entries, MM:SS:FF
ISO Indexes
Each index is 32 bytes long:
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Offset | Type/Size | Purpose | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
0x00 | DWord | Offset of block | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
0x04 | DWord | Size of block (see note below) |
the other 24 bytes are just junk
Blocks - uncompressed blocks are 16*2352 bytes (there's 2352 bytes per CD sector). Although ISO sectors only have 2048 bytes per sector (don't include RAW data) the uncompressed block size is always 16*2352 bytes long.
Compressed blocks are compressed with zlib.
Anyways, I'm still looking into this format - mainly for my popstation GUI :)
|
Replies (6)
|
flash1 formatter released...
|
W00t, something for you guys with corrupt flash1!
Quote:Before you use this application, please take note that it only works through recovery. If you try to run it through the XMB, you will witness your PSP freeze. So beware.
Also, Team tOc added that Flash1 Formatter will only work if "lflash_fatfmt.prx" is located in flash0:/kd. In the event that it is not, the program looks in ms0:/lflash_fatfmt.prx.
There are still a few important details to take note of, so be sure to READ through the README before you do anything. (You do that anyway for EVERY piece of software before you use it, don't you?)
Furthermore, installation and usage is quite easy. After placing the folder in the root of your memory stick, all you have to do is follow the simple steps below. By the way, Team tOc is composed of well known developers EvilSeph, Moca, TUW, Ahadiel and kando.
- Turn off your PSP
- Turn on your PSP while holding down R to boot into Recovery Mode.
- Scroll to "Run program at /PSP/GAME/RECOVERY/EBOOT.PBP" and press Cross.
- Press tOc (Triangle + Circle + Cross) to unlock the program [this is to force people to read this readme.txt]
- Read the on-screen instructions (can be found in the readme file).
Source http://pspupdates.qj.net/Flash1-Formatte.../aid/79890
Download http://dl.qj.net/Flash1-Formatter-v1-PSP.../catid/151
|
Replies (21)
|
No PSP2?
|
Quote: Another rumor goes the path of the Aurora bomber, Crysis 360, and the cure for baldness. If you guys are having too much fun ogling over the PSP2 concept art made by Emre Husmen, look away - as Sony says there is nothing of the sort cooking up.
Sony Computer Entertainment Europe has just announced that "There is no PSP2." in the works, and that rumors circulating about a PSP successor are just that - rumors.
Among other features that the PSP2 would carry was an obscenely large 60GB HDD, a built-in camera function, Bluetooth capabilities, and a cell phone. Of course, there are far more features circulating out there, which carry over our best hopes for the portable. For now, wee resume the daily homebrew grind with the console that's already here.
Source http://pspupdates.qj.net/Sony-SCEE-No-PS.../aid/79882
Oddly, IMO, they'll still do it eventually...[/size]
|
Replies (36)
|
|
|
Welcome, Guest |
You have to register before you can post on our site.
|
Online Users |
There are currently 199 online users. » 2 Member(s) | 197 Guest(s) DavidSkigh, Methrenwet
|
|