Results 1 to 8 of 8
  1. #1
    EmuTalk Member fatalexception's Avatar
    Join Date
    Dec 2005
    Posts
    18

    gamecube serial number?

    see: http://www.ckemu.com/dolphin_list/dolphin.html
    the serial for "Bust a Move 3000" is "G3SE 7958".



    where does "7958" come from? it appears to be a 2 byte value or a string representing a 2 byte hex value.

    me thinks the serial should be "DOL-G3SE-USA". it seems "DOL" is implied. "G3SE" is the first 4 bytes of the gcm file. "USA" is either from boot.bin or bi2.bin.

    i wrote a utility for showing the gcm header info and walking the fst based on yagcd but this part of the serial puzzles me.


    • Advertising

      advertising
      EmuTalk.net
      has no influence
      on the ads that
      are displayed
        
       

  2. #2
    aka Chrono Archangel _Chrono_'s Avatar
    Join Date
    May 2004
    Posts
    244
    i think its a hash of the banner...i think...
    ector shoul be able to tell you :p maybe CK knows

    it woul make sense since 2-disks games have the same 4 first digits. the last 4 are banner related..

    as for "USA" its not really needed... in G3SE, the "E" means "USA"


    E=USA
    P=EUR (PAL)
    J=JAP
    F=French
    Last edited by _Chrono_; December 27th, 2005 at 18:07.
    --- Intel Pentium 4 2.6GHz - 1024MB DDR400 - Geforce 6600GT AGP8X ---
    --- WD 160GB - WD 120GB - CD-R/RW 52X/32X/52X - Sony DVD+/-RW ---


  3. #3
    EmuTalk Member Guru64's Avatar
    Join Date
    Sep 2003
    Posts
    369
    Quote Originally Posted by _Chrono_
    F=French
    Never saw a Gamecube game that had that.

  4. #4
    aka Chrono Archangel _Chrono_'s Avatar
    Join Date
    May 2004
    Posts
    244
    scroll donw to Tales of Symphonia in the list
    --- Intel Pentium 4 2.6GHz - 1024MB DDR400 - Geforce 6600GT AGP8X ---
    --- WD 160GB - WD 120GB - CD-R/RW 52X/32X/52X - Sony DVD+/-RW ---


  5. #5
    EmuTalk Member fatalexception's Avatar
    Join Date
    Dec 2005
    Posts
    18
    thanks for pointing "F=France" out.
    this makes me wonder if the gc supports secam -- but im guessing not.

    also, is anyone keeping a map of nintendo publisher codes to names?
    here is the best ive found: http://hem.passagen.se/flubba/downlo...o_Companys.txt

  6. #6
    Master of the Emulation Flame MasterPhW's Avatar
    Join Date
    May 2004
    Location
    come-to-hell
    Posts
    1,978
    Quote Originally Posted by _Chrono_
    i think its a hash of the banner...i think...
    ector shoul be able to tell you :p maybe CK knows

    it woul make sense since 2-disks games have the same 4 first digits. the last 4 are banner related..

    as for "USA" its not really needed... in G3SE, the "E" means "USA"


    E=USA
    P=EUR (PAL)
    J=JAP
    F=French
    There's also X=??? and
    G= German!
    The Future of Emulation: Emulate a High End Computer on a Low End System
    Main: Intel Core i7 (Lynnfiled) 860 (@3.802Ghz) | 8 GB DDR3-1333 | ATI XFX HD 5750 PCI-E | ATI High Definition Audio Device | 256 GB SSD + 3 TB Internal SATA2 + 4 TB external | Windows 7 Professional X64 SP1 MSDNAA
    Netbook: Asus EeePC 1015PEM | Intel Atom Dual Core N550 (1,5GHz) | 2GB DDR3-1066 | Intel GMA 3150 | 250GB HDD | Win 7 Starter
    Old One: AMD Athlon 64 X2 4200+ (2x2.5Ghz; S939) | MSI KbT Neo2-F V2.0 | 2x1GB Corsair Value VS1GBKIT400 | Radeon HD 3850 512 MB/AGP8x | Creative SB Audigy LS | 2TB (4x500GB SATA2 HDDs Raid0) | Windows 7 Business X64 SP1 MSDNAA



  7. #7
    EmuTalk Member fatalexception's Avatar
    Join Date
    Dec 2005
    Posts
    18
    G=German? can you give an example?
    X=? can you give an example?

    i suspect 'X' is used by sites like http://www.planetnintendo.com/nindb/dol/dol_lcam.shtml as a wildcard -- the actual game has an 'E' or 'J' such as http://soulcalibur.phdream.com/sc2/box/gc_us_02.jpg. but thats just a guess.

  8. #8
    EmuTalk Member fatalexception's Avatar
    Join Date
    Dec 2005
    Posts
    18
    behold! ive have discovered the Gamecube Disc CRC database! only im not brave enough to post a link...

    nevertheless, my code looks like:
    Code:
    const char *getRegionString(char region)
    {
    	map < char, const char *>regions;
    	regions['D'] = "Deutschland/PAL";	// The Lord of the Rings, The Third Age (G3AD)
    	regions['E'] = "USA/NTSC";	// Bust a Move 3000 (G3SE)
    	regions['F'] = "France/SECAM";	// Tales of Symphonia (GQSF)
    	regions['G'] = "Germany/PAL";	// MasterPhW
    	regions['P'] = "Europe/PAL";	// The Legend Of Zelda The Wind Waker (GZLP)
    	regions['J'] = "Japan/NTSC";	// Kururin Squash (GKQJ)
    	regions['U'] = "Austalia/PAL";	// The Legend of Zelda: Ocarina of Time (D43U)
    	regions['X'] = "Unknown";	// Harry Potter and the Chamber of Secrets (GHSX)
    	regions['Y'] = "Unknown";	// Harry Potter and the Chamber of Secrets (GHSY)
    
    	map < char, const char *>::iterator it = regions.find(region);
    	return it == regions.end()? "Unknown" : (*it).second;
    }
    any guesses for the unkowns?
    my eyes dont see any germany serials yet...
    Last edited by fatalexception; December 29th, 2005 at 19:40.

Similar Threads

  1. Revolution Control Revealed!
    By Hexidecimal in forum Gaming
    Replies: 167
    Last Post: October 3rd, 2005, 09:05
  2. Replies: 2
    Last Post: June 15th, 2005, 00:26
  3. Replies: 7
    Last Post: May 10th, 2005, 07:01
  4. The Gamecube List!
    By blizz in forum Talk of the Town
    Replies: 37
    Last Post: October 12th, 2002, 20:51
  5. #1 Console..
    By Jaz in forum Talk of the Town
    Replies: 19
    Last Post: March 17th, 2002, 14:29

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •