DiscImageCreator

sarami
Posts: 1762
Joined: Mon Jun 08, 2026 1:27 am

Re: DiscImageCreator

Post by sarami »

Haldrie wrote:I would suggest checking further in to the tracks for CD+G data or adding an override option to force CD+G detection in these cases.
_disc.txt

Code: Select all

========== Track[01]: Check CD+G ==========
========== LBA[000100, 0x00064], Sub Channel ==========
      +0 +1 +2 +3 +4 +5 +6 +7 +8 +9 +A +B
    P 00 00 00 00 00 00 00 00 00 00 00 00
    Q 41 01 01 00 01 25 00 00 03 25 01 87
    R 00 00 00 00 00 00 00 00 00 00 00 00
    S 00 00 00 00 00 00 00 00 00 00 00 00
    T 00 00 00 00 00 00 00 00 00 00 00 00
    U 00 00 00 00 00 00 00 00 00 00 00 00
    V 00 00 00 00 00 00 00 00 00 00 00 00
    W 00 00 00 00 00 00 00 00 00 00 00 00
    Nothing
As things are, only sector 100 is checked. Do you think which further sector should be checked?
BTW, Subdump is recommended if you dump the CD+G more precisely.
Last edited by sarami on Tue Mar 21, 2017 8:09 pm, edited 1 time in total.
DiscImageCreator, UmdImageCreator, Conv2multiBin, bin2wav, PS3Auth (needs login), [url=http://www.mediafire.com/file/5cgoy11x6ahc7qh/%2523recompressTo7z_20150109.bat/file]recompressTo7z_20150109.bat[/url]
User avatar
Haldrie
Posts: 271
Joined: Mon Jun 08, 2026 1:26 am

Re: DiscImageCreator

Post by Haldrie »

Oh I was assuming it was checking the first sector's subchannel data. Maybe have it check a certain range of sectors at the start of the track or as I also suggested have an override option to force it to treat all tracks as if they have CDG subchannel data. The only real issue other then the zeroing out of legit subchannel data would be the several hundred megabyte subError file as it zeros all those fields out. Also I know there is subdump and I am using it for the discs that were not correctly detected by DIC but it's just really time consuming especially with something like what I'm doing that isn't really for redump...unless redump starts accepting licensed Audio CDs or Karaoke discs. Also I was very impressed with the way DIC handled the CDG discs it did correctly detect and wasn't expecting it to touch the P-W fields at all but it did actually fix several of them on those discs and when I burned the result the disc seemed to play perfectly with no glitches in the graphics from the Karaoke player I was playing the burned copy on. If you do manage to fix the detection or add the override option (or both even just in case) then I can see DIC having another purpose at preserving karaoke CDs especially ones where the graphics doesn't show up right due to very minor scratches on the disc.
sarami
Posts: 1762
Joined: Mon Jun 08, 2026 1:27 am

Re: DiscImageCreator

Post by sarami »

http://www.mediafire.com/file/eq80y20l9 … or_test.7z
Added option.

Code: Select all

        /g      Not fix SubRtoW
                        For CD+G etc.
In dic,  SubRtoW is replaced all zero or completely not fix. This option forcibly doesn't fix SubRtoW.
Last edited by sarami on Wed Mar 22, 2017 1:57 am, edited 1 time in total.
DiscImageCreator, UmdImageCreator, Conv2multiBin, bin2wav, PS3Auth (needs login), [url=http://www.mediafire.com/file/5cgoy11x6ahc7qh/%2523recompressTo7z_20150109.bat/file]recompressTo7z_20150109.bat[/url]
User avatar
Haldrie
Posts: 271
Joined: Mon Jun 08, 2026 1:26 am

Re: DiscImageCreator

Post by Haldrie »

Yep that seems to do the trick of what I wanted thanks.
F1ReB4LL
Posts: 3395
Joined: Mon Jun 08, 2026 1:26 am

Re: DiscImageCreator

Post by F1ReB4LL »

I'd recommend PerfectRip with its 100b packed mode for subs, it enables Plextor's internal error correction for CD+G and you get the constant sub dumps with it.
User avatar
Haldrie
Posts: 271
Joined: Mon Jun 08, 2026 1:26 am

Re: DiscImageCreator

Post by Haldrie »

Thanks I'll try that and see the comparison though PerfectRip isn't exactly a quick solution with having to configure everything before hand where I have premade batch files that I wrote for dumping different discs in DIC. I just edit a separate file to change the drive letter if needed and the name of the dump and then open the batch file for what type of disc I'm dumping and let it do it's thing. I really need to start posting all these dumps soon but I want to get scans first so I have as much documented as possible before submitting especially with the ring code.
reentrant
Posts: 719
Joined: Mon Jun 08, 2026 1:28 am

Re: DiscImageCreator

Post by reentrant »

AFAIK D8 is incompatible with packed mode. BE is. Use /be pack to enable packed mode subs extraction. No need for PerfectRip Image
F1ReB4LL
Posts: 3395
Joined: Mon Jun 08, 2026 1:26 am

Re: DiscImageCreator

Post by F1ReB4LL »

reentrant wrote:AFAIK D8 is incompatible with packed mode. BE is. Use /be pack to enable packed mode subs extraction. No need for PerfectRip Image
Are you sure DIC uses exactly the pack mode and not the raw subs mode? Haven't tried yet (need to dig my 2 cd+gs for that), just asking.
reentrant
Posts: 719
Joined: Mon Jun 08, 2026 1:28 am

Re: DiscImageCreator

Post by reentrant »

This is for BE command:

Code: Select all

CDFLAG::_READ_CD::_SUB_CHANNEL_SELECTION sub = CDFLAG::_READ_CD::Raw;
_tcsncpy(szSubCode, _T("Raw"), sizeof(szSubCode) / sizeof(szSubCode[0]));
if (pExtArg->byPack) {
    sub = CDFLAG::_READ_CD::Pack;
    _tcsncpy(szSubCode, _T("Pack"), sizeof(szSubCode) / sizeof(szSubCode[0]));
}
SetReadCDCommand(pExtArg, pDevice, &cdb, type, 1, c2, sub, FALSE);

OutputLog(standardOut | fileDisc, _T("Set read command: %#x, subcode reading mode: %s\n"), lpCmd[0], szSubCode);
For D8 command it's slightly different. If you want Packed subs with D8 command you have do skip C2 error reporting:

Code: Select all

if (pExtArg->byC2 && pDevice->FEATURE.byC2ErrorData) {
    _tcsncpy(szSubCode, _T("Raw"), sizeof(szSubCode) / sizeof(szSubCode[0]));
    SetReadD8Command(pDevice, &cdb, 1, CDFLAG::_PLXTR_READ_CDDA::MainC2Raw);
}
else {
    _tcsncpy(szSubCode, _T("Pack"), sizeof(szSubCode) / sizeof(szSubCode[0]));
    SetReadD8Command(pDevice, &cdb, 1, CDFLAG::_PLXTR_READ_CDDA::MainPack);
}
Last edited by reentrant on Wed Mar 22, 2017 3:16 pm, edited 1 time in total.
User avatar
Haldrie
Posts: 271
Joined: Mon Jun 08, 2026 1:26 am

Re: DiscImageCreator

Post by Haldrie »

I have seen in the disc text file that it is switching to BE mode when reading the CD+G discs even when I have the /d8 mode set in the command. I think it might be doing that for any disc that is audio only which I guess isn't really an issue but it does also say it's reading subchannels in raw mode.

From one of the discs that wasn't detected properly as a CD+G disc that I tested the new /g command on.

Karaoke Bay - Barnburners - Today's Hot Country 34812_cmd.txt

Code: Select all

DiscImageCreator.exe cd g CDG\Karaoke Bay - Barnburners - Today's Hot Country 34812\Karaoke Bay - Barnburners - Today's Hot Country 34812 10 /d8 /c2 /g
Karaoke Bay - Barnburners - Today's Hot Country 34812_disc.txt

Code: Select all

========== DiscInformation ==========
                      DiscStatus: Complete
               LastSessionStatus: Complete
                        Erasable: No
                FirstTrackNumber: 1
             NumberOfSessionsLsb: 1
        LastSessionFirstTrackLsb: 1
         LastSessionLastTrackLsb: 16
                       MrwStatus: None
                     MrwDirtyBit: No
                 UnrestrictedUse: No
                DiscBarCodeValid: No
                     DiscIDValid: No
                        DiscType: CD-DA or CD-ROM Disc
               LastSessionLeadIn: 00:ff:ff:ff
    LastPossibleLeadOutStartTime: 00:ff:ff:ff
                NumberOPCEntries: 0
========== TOC ==========
     Audio Track  1, LBA        0-   18222, Length    18223
     Audio Track  2, LBA    18223-   35544, Length    17322
     Audio Track  3, LBA    35545-   52889, Length    17345
     Audio Track  4, LBA    52890-   72408, Length    19519
     Audio Track  5, LBA    72409-   90526, Length    18118
     Audio Track  6, LBA    90527-  108491, Length    17965
     Audio Track  7, LBA   108492-  126658, Length    18167
     Audio Track  8, LBA   126659-  142494, Length    15836
     Audio Track  9, LBA   142495-  160221, Length    17727
     Audio Track 10, LBA   160222-  179112, Length    18891
     Audio Track 11, LBA   179113-  193482, Length    14370
     Audio Track 12, LBA   193483-  212752, Length    19270
     Audio Track 13, LBA   212753-  231455, Length    18703
     Audio Track 14, LBA   231456-  247264, Length    15809
     Audio Track 15, LBA   247265-  266157, Length    18893
     Audio Track 16, LBA   266158-  282289, Length    16132
                                            Total    282290
======= Offset(Drive offset data referes to http://www.accuraterip.com) =======
     Combined Offset(Byte)    392, (Samples)    98
    -   Drive Offset(Byte)    392, (Samples)    98
    ----------------------------------------------
           CD Offset(Byte)      0, (Samples)     0
    Overread sector: 1
========== CDTEXT ==========
    Nothing
========== Track[01]: Check MCN and/or ISRC ==========
    Nothing
========== Track[02]: Check MCN and/or ISRC ==========
    Nothing
========== Track[03]: Check MCN and/or ISRC ==========
    Nothing
========== Track[04]: Check MCN and/or ISRC ==========
    Nothing
========== Track[05]: Check MCN and/or ISRC ==========
    Nothing
========== Track[06]: Check MCN and/or ISRC ==========
    Nothing
========== Track[07]: Check MCN and/or ISRC ==========
    Nothing
========== Track[08]: Check MCN and/or ISRC ==========
    Nothing
========== Track[09]: Check MCN and/or ISRC ==========
    Nothing
========== Track[10]: Check MCN and/or ISRC ==========
    Nothing
========== Track[11]: Check MCN and/or ISRC ==========
    Nothing
========== Track[12]: Check MCN and/or ISRC ==========
    Nothing
========== Track[13]: Check MCN and/or ISRC ==========
    Nothing
========== Track[14]: Check MCN and/or ISRC ==========
    Nothing
========== Track[15]: Check MCN and/or ISRC ==========
    Nothing
========== Track[16]: Check MCN and/or ISRC ==========
    Nothing
========== FULL TOC ==========
    FirstCompleteSession: 1
     LastCompleteSession: 1
    Session 1, FirstTrack  1, Format: CD-DA or CD-ROM
    Session 1,  LastTrack 16
    Session 1,      Leadout, MSF 62:45:65 (LBA[282440, 0x44f48])
    Session 1,     Track  1, MSF 00:02:00 (LBA[000150, 0x00096])
    Session 1,     Track  2, MSF 04:04:73 (LBA[018373, 0x047c5])
    Session 1,     Track  3, MSF 07:55:70 (LBA[035695, 0x08b6f])
    Session 1,     Track  4, MSF 11:47:15 (LBA[053040, 0x0cf30])
    Session 1,     Track  5, MSF 16:07:34 (LBA[072559, 0x11b6f])
    Session 1,     Track  6, MSF 20:09:02 (LBA[090677, 0x16235])
    Session 1,     Track  7, MSF 24:08:42 (LBA[108642, 0x1a862])
    Session 1,     Track  8, MSF 28:10:59 (LBA[126809, 0x1ef59])
    Session 1,     Track  9, MSF 31:41:70 (LBA[142645, 0x22d35])
    Session 1,     Track 10, MSF 35:38:22 (LBA[160372, 0x27274])
    Session 1,     Track 11, MSF 39:50:13 (LBA[179263, 0x2bc3f])
    Session 1,     Track 12, MSF 43:01:58 (LBA[193633, 0x2f461])
    Session 1,     Track 13, MSF 47:18:53 (LBA[212903, 0x33fa7])
    Session 1,     Track 14, MSF 51:28:06 (LBA[231606, 0x388b6])
    Session 1,     Track 15, MSF 54:58:65 (LBA[247415, 0x3c677])
    Session 1,     Track 16, MSF 59:10:58 (LBA[266308, 0x41044])
========== Track[01]: Check CD+G ==========
========== LBA[000100, 0x00064], Sub Channel ==========
      +0 +1 +2 +3 +4 +5 +6 +7 +8 +9 +A +B
    P 00 00 00 00 00 00 00 00 00 00 00 00
    Q 01 01 01 00 01 25 00 00 03 25 73 9d
    R 00 00 00 00 00 00 00 00 00 00 00 00
    S 00 00 00 00 00 00 00 00 00 00 00 00
    T 00 00 00 00 00 00 00 00 00 00 00 00
    U 00 00 00 00 00 00 00 00 00 00 00 00
    V 00 00 00 00 00 00 00 00 00 00 00 00
    W 00 00 00 00 00 00 00 00 00 00 00 00
    Nothing
========== Track[02]: Check CD+G ==========
========== LBA[018323, 0x04793], Sub Channel ==========
      +0 +1 +2 +3 +4 +5 +6 +7 +8 +9 +A +B
    P 00 00 00 00 00 00 00 00 00 00 00 00
    Q 01 02 01 00 01 25 00 04 06 23 1d 2a
    R 00 00 00 00 00 00 00 00 00 00 00 00
    S 00 00 00 00 00 00 00 00 00 00 00 00
    T 00 00 00 00 00 00 00 00 00 00 00 00
    U 00 00 00 00 00 00 00 00 00 00 00 00
    V 00 00 00 00 00 00 00 00 00 00 00 00
    W 00 00 00 00 00 00 00 00 00 00 00 00
    Nothing
========== Track[03]: Check CD+G ==========
========== LBA[035645, 0x08b3d], Sub Channel ==========
      +0 +1 +2 +3 +4 +5 +6 +7 +8 +9 +A +B
    P 00 00 00 00 00 00 00 00 00 00 00 00
    Q 01 03 01 00 01 25 00 07 57 20 a2 b4
    R 00 00 00 00 00 00 00 00 00 00 00 00
    S 00 00 00 00 00 00 00 00 00 00 00 00
    T 00 00 00 00 00 00 00 00 00 00 00 00
    U 00 00 00 00 00 00 00 00 00 00 00 00
    V 00 00 00 00 00 00 00 00 00 00 00 00
    W 00 00 00 00 00 00 00 00 00 00 00 00
    Nothing
========== Track[04]: Check CD+G ==========
========== LBA[052990, 0x0cefe], Sub Channel ==========
      +0 +1 +2 +3 +4 +5 +6 +7 +8 +9 +A +B
    P 00 00 00 00 00 00 00 00 00 00 00 00
    Q 01 04 01 00 01 25 00 11 48 40 9d 37
    R 00 00 00 00 00 00 00 00 00 00 00 00
    S 00 00 00 00 00 00 00 00 00 00 00 00
    T 00 00 00 00 00 00 00 00 00 00 00 00
    U 00 00 00 00 00 00 00 00 00 00 00 00
    V 00 00 00 00 00 00 00 00 00 00 00 00
    W 00 00 00 00 00 00 00 00 00 00 00 00
    Nothing
========== Track[05]: Check CD+G ==========
========== LBA[072509, 0x11b3d], Sub Channel ==========
      +0 +1 +2 +3 +4 +5 +6 +7 +8 +9 +A +B
    P 00 00 00 00 00 00 00 00 00 00 00 00
    Q 01 05 01 00 01 25 00 16 08 59 7d 50
    R 00 00 00 00 00 00 00 00 00 00 00 00
    S 00 00 00 00 00 00 00 00 00 00 00 00
    T 00 00 00 00 00 00 00 00 00 00 00 00
    U 00 00 00 00 00 00 00 00 00 00 00 00
    V 00 00 00 00 00 00 00 00 00 00 00 00
    W 00 00 00 00 00 00 00 00 00 00 00 00
    Nothing
========== Track[06]: Check CD+G ==========
========== LBA[090627, 0x16203], Sub Channel ==========
      +0 +1 +2 +3 +4 +5 +6 +7 +8 +9 +A +B
    P 00 00 00 00 00 00 00 00 00 00 00 00
    Q 01 06 01 00 01 25 00 20 10 27 32 92
    R 00 00 00 00 00 00 00 00 00 00 00 00
    S 00 00 00 00 00 00 00 00 00 00 00 00
    T 00 00 00 00 00 00 00 00 00 00 00 00
    U 00 00 00 00 00 00 00 00 00 00 00 00
    V 00 00 00 00 00 00 00 00 00 00 00 00
    W 00 00 00 00 00 00 00 00 00 00 00 00
    Nothing
========== Track[07]: Check CD+G ==========
========== LBA[108592, 0x1a830], Sub Channel ==========
      +0 +1 +2 +3 +4 +5 +6 +7 +8 +9 +A +B
    P 00 00 00 00 00 00 00 00 00 00 00 00
    Q 01 07 01 00 01 25 00 24 09 67 f4 5e
    R 00 00 00 00 00 00 00 00 00 00 00 00
    S 00 00 00 00 00 00 00 00 00 00 00 00
    T 00 00 00 00 00 00 00 00 00 00 00 00
    U 00 00 00 00 00 00 00 00 00 00 00 00
    V 00 00 00 00 00 00 00 00 00 00 00 00
    W 00 00 00 00 00 00 00 00 00 00 00 00
    Nothing
========== Track[08]: Check CD+G ==========
========== LBA[126759, 0x1ef27], Sub Channel ==========
      +0 +1 +2 +3 +4 +5 +6 +7 +8 +9 +A +B
    P 00 00 00 00 00 00 00 00 00 00 00 00
    Q 01 08 01 00 01 25 00 28 12 09 4b 8a
    R 00 00 00 00 00 00 00 00 00 00 00 00
    S 00 00 00 00 00 00 00 00 00 00 00 00
    T 00 00 00 00 00 00 00 00 00 00 00 00
    U 00 00 00 00 00 00 00 00 00 00 00 00
    V 00 00 00 00 00 00 00 00 00 00 00 00
    W 00 00 00 00 00 00 00 00 00 00 00 00
    Nothing
========== Track[09]: Check CD+G ==========
========== LBA[142595, 0x22d03], Sub Channel ==========
      +0 +1 +2 +3 +4 +5 +6 +7 +8 +9 +A +B
    P 00 00 00 00 00 00 00 00 00 00 00 00
    Q 01 09 01 00 01 25 00 31 43 20 f5 9e
    R 00 00 00 00 00 00 00 00 00 00 00 00
    S 00 00 00 00 00 00 00 00 00 00 00 00
    T 00 00 00 00 00 00 00 00 00 00 00 00
    U 00 00 00 00 00 00 00 00 00 00 00 00
    V 00 00 00 00 00 00 00 00 00 00 00 00
    W 00 00 00 00 00 00 00 00 00 00 00 00
    Nothing
========== Track[10]: Check CD+G ==========
========== LBA[160322, 0x27242], Sub Channel ==========
      +0 +1 +2 +3 +4 +5 +6 +7 +8 +9 +A +B
    P 00 00 00 00 00 00 00 00 00 00 00 00
    Q 01 10 01 00 01 25 00 35 39 47 43 af
    R 00 00 00 00 00 00 00 00 00 00 00 00
    S 00 00 00 00 00 00 00 00 00 00 00 00
    T 00 00 00 00 00 00 00 00 00 00 00 00
    U 00 00 00 00 00 00 00 00 00 00 00 00
    V 00 00 00 00 00 00 00 00 00 00 00 00
    W 00 00 00 00 00 00 00 00 00 00 00 00
    Nothing
========== Track[11]: Check CD+G ==========
========== LBA[179213, 0x2bc0d], Sub Channel ==========
      +0 +1 +2 +3 +4 +5 +6 +7 +8 +9 +A +B
    P 00 00 00 00 00 00 00 00 00 00 00 00
    Q 01 11 01 00 01 25 00 39 51 38 d0 16
    R 00 00 00 00 04 00 00 00 00 00 00 00
    S 00 00 00 00 00 00 00 00 00 00 00 00
    T 00 00 00 00 00 00 00 00 00 00 00 00
    U 00 00 00 00 04 00 00 00 00 00 00 00
    V 00 00 00 00 04 00 00 00 00 00 00 00
    W 00 00 00 00 00 00 00 00 00 00 00 00
    Nothing
========== Track[12]: Check CD+G ==========
========== LBA[193583, 0x2f42f], Sub Channel ==========
      +0 +1 +2 +3 +4 +5 +6 +7 +8 +9 +A +B
    P 00 00 00 00 00 00 00 00 00 00 00 00
    Q 01 12 01 00 01 25 00 43 03 08 bc 15
    R 00 00 00 00 00 00 00 00 00 00 00 00
    S 00 00 00 00 00 00 00 00 00 00 00 00
    T 00 00 00 00 00 00 00 00 00 00 00 00
    U 00 00 00 00 00 00 00 00 00 00 00 00
    V 00 00 00 00 00 00 00 00 00 00 00 00
    W 00 00 00 00 00 00 00 00 00 00 00 00
    Nothing
========== Track[13]: Check CD+G ==========
========== LBA[212853, 0x33f75], Sub Channel ==========
      +0 +1 +2 +3 +4 +5 +6 +7 +8 +9 +A +B
    P 00 00 00 00 00 00 00 00 00 00 00 00
    Q 01 13 01 00 01 25 00 47 20 03 69 28
    R 00 00 00 00 00 00 00 00 00 00 00 00
    S 00 00 00 00 00 00 00 00 00 00 00 00
    T 00 00 00 00 00 00 00 00 00 00 00 00
    U 00 00 00 00 00 00 00 00 00 00 00 00
    V 00 00 00 00 00 00 00 00 00 00 00 00
    W 00 00 00 00 00 00 00 00 00 00 00 00
    Nothing
========== Track[14]: Check CD+G ==========
========== LBA[231556, 0x38884], Sub Channel ==========
      +0 +1 +2 +3 +4 +5 +6 +7 +8 +9 +A +B
    P 00 00 00 00 00 00 00 00 00 00 00 00
    Q 01 14 01 00 01 25 00 51 29 31 85 c9
    R 00 00 00 00 00 00 00 00 00 00 00 00
    S 00 00 00 00 00 00 00 00 00 00 00 00
    T 00 00 00 00 00 00 00 00 00 00 00 00
    U 00 00 00 00 00 00 00 00 00 00 00 00
    V 00 00 00 00 00 00 00 00 00 00 00 00
    W 00 00 00 00 00 00 00 00 00 00 00 00
    Nothing
========== Track[15]: Check CD+G ==========
========== LBA[247365, 0x3c645], Sub Channel ==========
      +0 +1 +2 +3 +4 +5 +6 +7 +8 +9 +A +B
    P 00 00 00 00 00 00 00 00 00 00 00 00
    Q 01 15 01 00 01 25 00 55 00 15 6a b2
    R 00 00 00 00 00 00 00 00 00 00 00 00
    S 00 00 00 00 00 00 00 00 00 00 00 00
    T 00 00 00 00 00 00 00 00 00 00 00 00
    U 00 00 00 00 00 00 00 00 00 00 00 00
    V 00 00 00 00 00 00 00 00 00 00 00 00
    W 00 00 00 00 00 00 00 00 00 00 00 00
    Nothing
========== Track[16]: Check CD+G ==========
========== LBA[266258, 0x41012], Sub Channel ==========
      +0 +1 +2 +3 +4 +5 +6 +7 +8 +9 +A +B
    P 00 00 00 00 00 00 00 00 00 00 00 00
    Q 01 16 01 00 01 25 00 59 12 08 94 1a
    R 00 00 00 00 00 00 00 00 00 00 00 00
    S 00 00 00 00 00 00 00 00 00 00 00 00
    T 00 00 00 00 00 00 00 00 00 00 00 00
    U 00 00 00 00 00 00 00 00 00 00 00 00
    V 00 00 00 00 00 00 00 00 00 00 00 00
    W 00 00 00 00 00 00 00 00 00 00 00 00
    Nothing
Set read command: 0xbe, subcode reading mode: Raw
========== TOC with pregap ==========
    Track  1, Ctl 0, Mode 0, Index0   -150, Index1      0
    Track  2, Ctl 0, Mode 0,              , Index1  18223
    Track  3, Ctl 0, Mode 0,              , Index1  35545
    Track  4, Ctl 0, Mode 0,              , Index1  52890
    Track  5, Ctl 0, Mode 0,              , Index1  72409
    Track  6, Ctl 0, Mode 0,              , Index1  90527
    Track  7, Ctl 0, Mode 0,              , Index1 108492
    Track  8, Ctl 0, Mode 0,              , Index1 126659
    Track  9, Ctl 0, Mode 0,              , Index1 142495
    Track 10, Ctl 0, Mode 0,              , Index1 160222
    Track 11, Ctl 0, Mode 0,              , Index1 179113
    Track 12, Ctl 0, Mode 0,              , Index1 193483
    Track 13, Ctl 0, Mode 0,              , Index1 212753
    Track 14, Ctl 0, Mode 0,              , Index1 231456
    Track 15, Ctl 0, Mode 0,              , Index1 247265
    Track 16, Ctl 0, Mode 0,              , Index1 266158
========== Hash(entire image) ==========
        <rom name="Karaoke Bay - Barnburners - Today's Hot Country 34812.img" size="663946080" crc="af8d606c" md5="f986f79c1a46bab5c0c0de813acc0318" sha1="2472d7809fcbf18f77dbb66ccc2d81b444cbc63e"/>
Post Reply