Twili Posted January 2, 2015 Share Posted January 2, 2015 On EmuParadise, I made a topic about it. Packed size: 130 megabytes Unpacked size: 681 megabytes Individual disk size: 61.9 megabytes (64,931,840 bytes) NUD-DKDJ-JPN.bin = Kyojin no Doshin (Doshin the Giant) NUD-DKIJ-JPN.bin = Kyojin no Doshin demo NUD-DKKJ-JPN.bin = Kyojin no Doshin: Kaihou Sensen Chibikko Chikko Daishuugou (Doshin the Giant: Tinkling Toddler Liberation Front! Assemble!) NUD-DMBJ-JPN.bin = Mario Artist: Communication Kit NUD-DMGJ-JPN.bin = Mario Artist: Polygon Studio NUD-DMPJ-JPN.bin = Mario Artist: Paint Studio NUD-DMTJ-JPN.bin = Mario Artist: Talent Studio NUD-DPGJ-JPN.bin = Japan Pro Golf Tour 64 NUD-DRDJ-JPN.bin = Randnet Browser NUD-DSCJ-JPN.bin = Sim City 64 NUD-EFZJ-JPN.bin = F-Zero X Expansion Kit Find the topic and have fun. 6 Link to comment Share on other sites More sharing options...
Arcaith Posted January 2, 2015 Share Posted January 2, 2015 I want to see whoever has the copy currently, do a dump of the 64DD version of Super Mario 64. 3 Link to comment Share on other sites More sharing options...
kyrin64 Posted January 5, 2015 Share Posted January 5, 2015 There actually is a discussion about that here http://www.assemblergames.com/forums/showthread.php?52203-Super-Mario-64-Disk-version-found&s=6f64afc0028521cdffb7293f1f6b9438 Link to comment Share on other sites More sharing options...
Twili Posted January 5, 2015 Author Share Posted January 5, 2015 Super Mario 64 will be dumped this month. A 64drive is already on its way to Jimmy130. Also, I wrote a tool to generate a document detailing the makeup of each disk type: #include <stdio.h> int main() { FILE *fzero; int table[16]={19720,18360,17680,16320,14960,13600,12240,10880,18360,17680,16320,14960,13600,12240,10880,9520},table2[7][9]={{0,0,0,1,1,1,1,1,1},{0,0,0,0,1,1,1,1,1},{0,0,0,0,0,1,1,1,1},{0,0,0,0,0,0,1,1,1},{0,0,0,0,0,0,0,1,1},{0,0,0,0,0,0,0,0,1},{0,0,0,0,0,0,0,0,0}},cum,lookup,offset,last,flag; short prev,value; char x,y,head; fzero=fopen("f-zero.z64","rb"); for(x=0;x<7;x+=1) { offset=0; last=0; cum=0; printf("Disk Type %d:\n\n",x); for(y=0;y<16;y+=1) { offset+=last; fseek(fzero,0x97948+0x20*x+2*y-2,SEEK_SET); prev=(short)((fgetc(fzero)<<8)|fgetc(fzero)); if(y==0){prev=0;} value=(short)((fgetc(fzero)<<8)|fgetc(fzero))-prev; fseek(fzero,0x97A48+0x10*x+y,SEEK_SET); lookup=fgetc(fzero); last=table[lookup]*value; printf("Offset: 0x%08X\nLBA range: 0x%04X - 0x%04X (0x%X bytes per block.)\nVZone: 0x%02X\n",offset,cum,cum+value-1,table[lookup],lookup); head=0; if(lookup>7){head=1;lookup-=7;} printf("PZone: 0x%02X Head: %d\n",lookup,head); flag=table2[x][lookup]; if(flag==0){printf("This is a ROM region.\n\n\n");} else{printf("This is a RAM region.\n\n\n");} cum+=value; } } return 0; } And the output: Disk Type 0: Offset: 0x00000000 LBA range: 0x0000 - 0x0123 (0x4D08 bytes per block.) VZone: 0x00 PZone: 0x00 Head: 0 This is a ROM region. Offset: 0x0057DD20 LBA range: 0x0124 - 0x0247 (0x47B8 bytes per block.) VZone: 0x01 PZone: 0x01 Head: 0 This is a ROM region. Offset: 0x00A9AB00 LBA range: 0x0248 - 0x0359 (0x4510 bytes per block.) VZone: 0x02 PZone: 0x02 Head: 0 This is a ROM region. Offset: 0x00F39620 LBA range: 0x035A - 0x047D (0x4510 bytes per block.) VZone: 0x09 PZone: 0x02 Head: 1 This is a ROM region. Offset: 0x01425C60 LBA range: 0x047E - 0x05A1 (0x47B8 bytes per block.) VZone: 0x08 PZone: 0x01 Head: 1 This is a ROM region. Offset: 0x01942A40 LBA range: 0x05A2 - 0x06B3 (0x3FC0 bytes per block.) VZone: 0x03 PZone: 0x03 Head: 0 This is a RAM region. Offset: 0x01D865C0 LBA range: 0x06B4 - 0x07C5 (0x3A70 bytes per block.) VZone: 0x04 PZone: 0x04 Head: 0 This is a RAM region. Offset: 0x0216F1A0 LBA range: 0x07C6 - 0x08D7 (0x3520 bytes per block.) VZone: 0x05 PZone: 0x05 Head: 0 This is a RAM region. Offset: 0x024FCDE0 LBA range: 0x08D8 - 0x09E9 (0x2FD0 bytes per block.) VZone: 0x06 PZone: 0x06 Head: 0 This is a RAM region. Offset: 0x0282FA80 LBA range: 0x09EA - 0x0AB5 (0x2A80 bytes per block.) VZone: 0x07 PZone: 0x07 Head: 0 This is a RAM region. Offset: 0x02A4D880 LBA range: 0x0AB6 - 0x0B81 (0x2530 bytes per block.) VZone: 0x0F PZone: 0x08 Head: 1 This is a RAM region. Offset: 0x02C27AC0 LBA range: 0x0B82 - 0x0C93 (0x2A80 bytes per block.) VZone: 0x0E PZone: 0x07 Head: 1 This is a RAM region. Offset: 0x02EFF7C0 LBA range: 0x0C94 - 0x0DA5 (0x2FD0 bytes per block.) VZone: 0x0D PZone: 0x06 Head: 1 This is a RAM region. Offset: 0x03232460 LBA range: 0x0DA6 - 0x0EB7 (0x3520 bytes per block.) VZone: 0x0C PZone: 0x05 Head: 1 This is a RAM region. Offset: 0x035C00A0 LBA range: 0x0EB8 - 0x0FC9 (0x3A70 bytes per block.) VZone: 0x0B PZone: 0x04 Head: 1 This is a RAM region. Offset: 0x039A8C80 LBA range: 0x0FCA - 0x10DB (0x3FC0 bytes per block.) VZone: 0x0A PZone: 0x03 Head: 1 This is a RAM region. Disk Type 1: Offset: 0x00000000 LBA range: 0x0000 - 0x0123 (0x4D08 bytes per block.) VZone: 0x00 PZone: 0x00 Head: 0 This is a ROM region. Offset: 0x0057DD20 LBA range: 0x0124 - 0x0247 (0x47B8 bytes per block.) VZone: 0x01 PZone: 0x01 Head: 0 This is a ROM region. Offset: 0x00A9AB00 LBA range: 0x0248 - 0x0359 (0x4510 bytes per block.) VZone: 0x02 PZone: 0x02 Head: 0 This is a ROM region. Offset: 0x00F39620 LBA range: 0x035A - 0x046B (0x3FC0 bytes per block.) VZone: 0x03 PZone: 0x03 Head: 0 This is a ROM region. Offset: 0x0137D1A0 LBA range: 0x046C - 0x057D (0x3FC0 bytes per block.) VZone: 0x0A PZone: 0x03 Head: 1 This is a ROM region. Offset: 0x017C0D20 LBA range: 0x057E - 0x06A1 (0x4510 bytes per block.) VZone: 0x09 PZone: 0x02 Head: 1 This is a ROM region. Offset: 0x01CAD360 LBA range: 0x06A2 - 0x07C5 (0x47B8 bytes per block.) VZone: 0x08 PZone: 0x01 Head: 1 This is a ROM region. Offset: 0x021CA140 LBA range: 0x07C6 - 0x08D7 (0x3A70 bytes per block.) VZone: 0x04 PZone: 0x04 Head: 0 This is a RAM region. Offset: 0x025B2D20 LBA range: 0x08D8 - 0x09E9 (0x3520 bytes per block.) VZone: 0x05 PZone: 0x05 Head: 0 This is a RAM region. Offset: 0x02940960 LBA range: 0x09EA - 0x0AFB (0x2FD0 bytes per block.) VZone: 0x06 PZone: 0x06 Head: 0 This is a RAM region. Offset: 0x02C73600 LBA range: 0x0AFC - 0x0BC7 (0x2A80 bytes per block.) VZone: 0x07 PZone: 0x07 Head: 0 This is a RAM region. Offset: 0x02E91400 LBA range: 0x0BC8 - 0x0C93 (0x2530 bytes per block.) VZone: 0x0F PZone: 0x08 Head: 1 This is a RAM region. Offset: 0x0306B640 LBA range: 0x0C94 - 0x0DA5 (0x2A80 bytes per block.) VZone: 0x0E PZone: 0x07 Head: 1 This is a RAM region. Offset: 0x03343340 LBA range: 0x0DA6 - 0x0EB7 (0x2FD0 bytes per block.) VZone: 0x0D PZone: 0x06 Head: 1 This is a RAM region. Offset: 0x03675FE0 LBA range: 0x0EB8 - 0x0FC9 (0x3520 bytes per block.) VZone: 0x0C PZone: 0x05 Head: 1 This is a RAM region. Offset: 0x03A03C20 LBA range: 0x0FCA - 0x10DB (0x3A70 bytes per block.) VZone: 0x0B PZone: 0x04 Head: 1 This is a RAM region. Disk Type 2: Offset: 0x00000000 LBA range: 0x0000 - 0x0123 (0x4D08 bytes per block.) VZone: 0x00 PZone: 0x00 Head: 0 This is a ROM region. Offset: 0x0057DD20 LBA range: 0x0124 - 0x0247 (0x47B8 bytes per block.) VZone: 0x01 PZone: 0x01 Head: 0 This is a ROM region. Offset: 0x00A9AB00 LBA range: 0x0248 - 0x0359 (0x4510 bytes per block.) VZone: 0x02 PZone: 0x02 Head: 0 This is a ROM region. Offset: 0x00F39620 LBA range: 0x035A - 0x046B (0x3FC0 bytes per block.) VZone: 0x03 PZone: 0x03 Head: 0 This is a ROM region. Offset: 0x0137D1A0 LBA range: 0x046C - 0x057D (0x3A70 bytes per block.) VZone: 0x04 PZone: 0x04 Head: 0 This is a ROM region. Offset: 0x01765D80 LBA range: 0x057E - 0x068F (0x3A70 bytes per block.) VZone: 0x0B PZone: 0x04 Head: 1 This is a ROM region. Offset: 0x01B4E960 LBA range: 0x0690 - 0x07A1 (0x3FC0 bytes per block.) VZone: 0x0A PZone: 0x03 Head: 1 This is a ROM region. Offset: 0x01F924E0 LBA range: 0x07A2 - 0x08C5 (0x4510 bytes per block.) VZone: 0x09 PZone: 0x02 Head: 1 This is a ROM region. Offset: 0x0247EB20 LBA range: 0x08C6 - 0x09E9 (0x47B8 bytes per block.) VZone: 0x08 PZone: 0x01 Head: 1 This is a ROM region. Offset: 0x0299B900 LBA range: 0x09EA - 0x0AFB (0x3520 bytes per block.) VZone: 0x05 PZone: 0x05 Head: 0 This is a RAM region. Offset: 0x02D29540 LBA range: 0x0AFC - 0x0C0D (0x2FD0 bytes per block.) VZone: 0x06 PZone: 0x06 Head: 0 This is a RAM region. Offset: 0x0305C1E0 LBA range: 0x0C0E - 0x0CD9 (0x2A80 bytes per block.) VZone: 0x07 PZone: 0x07 Head: 0 This is a RAM region. Offset: 0x03279FE0 LBA range: 0x0CDA - 0x0DA5 (0x2530 bytes per block.) VZone: 0x0F PZone: 0x08 Head: 1 This is a RAM region. Offset: 0x03454220 LBA range: 0x0DA6 - 0x0EB7 (0x2A80 bytes per block.) VZone: 0x0E PZone: 0x07 Head: 1 This is a RAM region. Offset: 0x0372BF20 LBA range: 0x0EB8 - 0x0FC9 (0x2FD0 bytes per block.) VZone: 0x0D PZone: 0x06 Head: 1 This is a RAM region. Offset: 0x03A5EBC0 LBA range: 0x0FCA - 0x10DB (0x3520 bytes per block.) VZone: 0x0C PZone: 0x05 Head: 1 This is a RAM region. Disk Type 3: Offset: 0x00000000 LBA range: 0x0000 - 0x0123 (0x4D08 bytes per block.) VZone: 0x00 PZone: 0x00 Head: 0 This is a ROM region. Offset: 0x0057DD20 LBA range: 0x0124 - 0x0247 (0x47B8 bytes per block.) VZone: 0x01 PZone: 0x01 Head: 0 This is a ROM region. Offset: 0x00A9AB00 LBA range: 0x0248 - 0x0359 (0x4510 bytes per block.) VZone: 0x02 PZone: 0x02 Head: 0 This is a ROM region. Offset: 0x00F39620 LBA range: 0x035A - 0x046B (0x3FC0 bytes per block.) VZone: 0x03 PZone: 0x03 Head: 0 This is a ROM region. Offset: 0x0137D1A0 LBA range: 0x046C - 0x057D (0x3A70 bytes per block.) VZone: 0x04 PZone: 0x04 Head: 0 This is a ROM region. Offset: 0x01765D80 LBA range: 0x057E - 0x068F (0x3520 bytes per block.) VZone: 0x05 PZone: 0x05 Head: 0 This is a ROM region. Offset: 0x01AF39C0 LBA range: 0x0690 - 0x07A1 (0x3520 bytes per block.) VZone: 0x0C PZone: 0x05 Head: 1 This is a ROM region. Offset: 0x01E81600 LBA range: 0x07A2 - 0x08B3 (0x3A70 bytes per block.) VZone: 0x0B PZone: 0x04 Head: 1 This is a ROM region. Offset: 0x0226A1E0 LBA range: 0x08B4 - 0x09C5 (0x3FC0 bytes per block.) VZone: 0x0A PZone: 0x03 Head: 1 This is a ROM region. Offset: 0x026ADD60 LBA range: 0x09C6 - 0x0AE9 (0x4510 bytes per block.) VZone: 0x09 PZone: 0x02 Head: 1 This is a ROM region. Offset: 0x02B9A3A0 LBA range: 0x0AEA - 0x0C0D (0x47B8 bytes per block.) VZone: 0x08 PZone: 0x01 Head: 1 This is a ROM region. Offset: 0x030B7180 LBA range: 0x0C0E - 0x0D1F (0x2FD0 bytes per block.) VZone: 0x06 PZone: 0x06 Head: 0 This is a RAM region. Offset: 0x033E9E20 LBA range: 0x0D20 - 0x0DEB (0x2A80 bytes per block.) VZone: 0x07 PZone: 0x07 Head: 0 This is a RAM region. Offset: 0x03607C20 LBA range: 0x0DEC - 0x0EB7 (0x2530 bytes per block.) VZone: 0x0F PZone: 0x08 Head: 1 This is a RAM region. Offset: 0x037E1E60 LBA range: 0x0EB8 - 0x0FC9 (0x2A80 bytes per block.) VZone: 0x0E PZone: 0x07 Head: 1 This is a RAM region. Offset: 0x03AB9B60 LBA range: 0x0FCA - 0x10DB (0x2FD0 bytes per block.) VZone: 0x0D PZone: 0x06 Head: 1 This is a RAM region. Disk Type 4: Offset: 0x00000000 LBA range: 0x0000 - 0x0123 (0x4D08 bytes per block.) VZone: 0x00 PZone: 0x00 Head: 0 This is a ROM region. Offset: 0x0057DD20 LBA range: 0x0124 - 0x0247 (0x47B8 bytes per block.) VZone: 0x01 PZone: 0x01 Head: 0 This is a ROM region. Offset: 0x00A9AB00 LBA range: 0x0248 - 0x0359 (0x4510 bytes per block.) VZone: 0x02 PZone: 0x02 Head: 0 This is a ROM region. Offset: 0x00F39620 LBA range: 0x035A - 0x046B (0x3FC0 bytes per block.) VZone: 0x03 PZone: 0x03 Head: 0 This is a ROM region. Offset: 0x0137D1A0 LBA range: 0x046C - 0x057D (0x3A70 bytes per block.) VZone: 0x04 PZone: 0x04 Head: 0 This is a ROM region. Offset: 0x01765D80 LBA range: 0x057E - 0x068F (0x3520 bytes per block.) VZone: 0x05 PZone: 0x05 Head: 0 This is a ROM region. Offset: 0x01AF39C0 LBA range: 0x0690 - 0x07A1 (0x2FD0 bytes per block.) VZone: 0x06 PZone: 0x06 Head: 0 This is a ROM region. Offset: 0x01E26660 LBA range: 0x07A2 - 0x08B3 (0x2FD0 bytes per block.) VZone: 0x0D PZone: 0x06 Head: 1 This is a ROM region. Offset: 0x02159300 LBA range: 0x08B4 - 0x09C5 (0x3520 bytes per block.) VZone: 0x0C PZone: 0x05 Head: 1 This is a ROM region. Offset: 0x024E6F40 LBA range: 0x09C6 - 0x0AD7 (0x3A70 bytes per block.) VZone: 0x0B PZone: 0x04 Head: 1 This is a ROM region. Offset: 0x028CFB20 LBA range: 0x0AD8 - 0x0BE9 (0x3FC0 bytes per block.) VZone: 0x0A PZone: 0x03 Head: 1 This is a ROM region. Offset: 0x02D136A0 LBA range: 0x0BEA - 0x0D0D (0x4510 bytes per block.) VZone: 0x09 PZone: 0x02 Head: 1 This is a ROM region. Offset: 0x031FFCE0 LBA range: 0x0D0E - 0x0E31 (0x47B8 bytes per block.) VZone: 0x08 PZone: 0x01 Head: 1 This is a ROM region. Offset: 0x0371CAC0 LBA range: 0x0E32 - 0x0EFD (0x2A80 bytes per block.) VZone: 0x07 PZone: 0x07 Head: 0 This is a RAM region. Offset: 0x0393A8C0 LBA range: 0x0EFE - 0x0FC9 (0x2530 bytes per block.) VZone: 0x0F PZone: 0x08 Head: 1 This is a RAM region. Offset: 0x03B14B00 LBA range: 0x0FCA - 0x10DB (0x2A80 bytes per block.) VZone: 0x0E PZone: 0x07 Head: 1 This is a RAM region. Disk Type 5: Offset: 0x00000000 LBA range: 0x0000 - 0x0123 (0x4D08 bytes per block.) VZone: 0x00 PZone: 0x00 Head: 0 This is a ROM region. Offset: 0x0057DD20 LBA range: 0x0124 - 0x0247 (0x47B8 bytes per block.) VZone: 0x01 PZone: 0x01 Head: 0 This is a ROM region. Offset: 0x00A9AB00 LBA range: 0x0248 - 0x0359 (0x4510 bytes per block.) VZone: 0x02 PZone: 0x02 Head: 0 This is a ROM region. Offset: 0x00F39620 LBA range: 0x035A - 0x046B (0x3FC0 bytes per block.) VZone: 0x03 PZone: 0x03 Head: 0 This is a ROM region. Offset: 0x0137D1A0 LBA range: 0x046C - 0x057D (0x3A70 bytes per block.) VZone: 0x04 PZone: 0x04 Head: 0 This is a ROM region. Offset: 0x01765D80 LBA range: 0x057E - 0x068F (0x3520 bytes per block.) VZone: 0x05 PZone: 0x05 Head: 0 This is a ROM region. Offset: 0x01AF39C0 LBA range: 0x0690 - 0x07A1 (0x2FD0 bytes per block.) VZone: 0x06 PZone: 0x06 Head: 0 This is a ROM region. Offset: 0x01E26660 LBA range: 0x07A2 - 0x086D (0x2A80 bytes per block.) VZone: 0x07 PZone: 0x07 Head: 0 This is a ROM region. Offset: 0x02044460 LBA range: 0x086E - 0x097F (0x2A80 bytes per block.) VZone: 0x0E PZone: 0x07 Head: 1 This is a ROM region. Offset: 0x0231C160 LBA range: 0x0980 - 0x0A91 (0x2FD0 bytes per block.) VZone: 0x0D PZone: 0x06 Head: 1 This is a ROM region. Offset: 0x0264EE00 LBA range: 0x0A92 - 0x0BA3 (0x3520 bytes per block.) VZone: 0x0C PZone: 0x05 Head: 1 This is a ROM region. Offset: 0x029DCA40 LBA range: 0x0BA4 - 0x0CB5 (0x3A70 bytes per block.) VZone: 0x0B PZone: 0x04 Head: 1 This is a ROM region. Offset: 0x02DC5620 LBA range: 0x0CB6 - 0x0DC7 (0x3FC0 bytes per block.) VZone: 0x0A PZone: 0x03 Head: 1 This is a ROM region. Offset: 0x032091A0 LBA range: 0x0DC8 - 0x0EEB (0x4510 bytes per block.) VZone: 0x09 PZone: 0x02 Head: 1 This is a ROM region. Offset: 0x036F57E0 LBA range: 0x0EEC - 0x100F (0x47B8 bytes per block.) VZone: 0x08 PZone: 0x01 Head: 1 This is a ROM region. Offset: 0x03C125C0 LBA range: 0x1010 - 0x10DB (0x2530 bytes per block.) VZone: 0x0F PZone: 0x08 Head: 1 This is a RAM region. Disk Type 6: Offset: 0x00000000 LBA range: 0x0000 - 0x0123 (0x4D08 bytes per block.) VZone: 0x00 PZone: 0x00 Head: 0 This is a ROM region. Offset: 0x0057DD20 LBA range: 0x0124 - 0x0247 (0x47B8 bytes per block.) VZone: 0x01 PZone: 0x01 Head: 0 This is a ROM region. Offset: 0x00A9AB00 LBA range: 0x0248 - 0x0359 (0x4510 bytes per block.) VZone: 0x02 PZone: 0x02 Head: 0 This is a ROM region. Offset: 0x00F39620 LBA range: 0x035A - 0x046B (0x3FC0 bytes per block.) VZone: 0x03 PZone: 0x03 Head: 0 This is a ROM region. Offset: 0x0137D1A0 LBA range: 0x046C - 0x057D (0x3A70 bytes per block.) VZone: 0x04 PZone: 0x04 Head: 0 This is a ROM region. Offset: 0x01765D80 LBA range: 0x057E - 0x068F (0x3520 bytes per block.) VZone: 0x05 PZone: 0x05 Head: 0 This is a ROM region. Offset: 0x01AF39C0 LBA range: 0x0690 - 0x07A1 (0x2FD0 bytes per block.) VZone: 0x06 PZone: 0x06 Head: 0 This is a ROM region. Offset: 0x01E26660 LBA range: 0x07A2 - 0x086D (0x2A80 bytes per block.) VZone: 0x07 PZone: 0x07 Head: 0 This is a ROM region. Offset: 0x02044460 LBA range: 0x086E - 0x0939 (0x2530 bytes per block.) VZone: 0x0F PZone: 0x08 Head: 1 This is a ROM region. Offset: 0x0221E6A0 LBA range: 0x093A - 0x0A4B (0x2A80 bytes per block.) VZone: 0x0E PZone: 0x07 Head: 1 This is a ROM region. Offset: 0x024F63A0 LBA range: 0x0A4C - 0x0B5D (0x2FD0 bytes per block.) VZone: 0x0D PZone: 0x06 Head: 1 This is a ROM region. Offset: 0x02829040 LBA range: 0x0B5E - 0x0C6F (0x3520 bytes per block.) VZone: 0x0C PZone: 0x05 Head: 1 This is a ROM region. Offset: 0x02BB6C80 LBA range: 0x0C70 - 0x0D81 (0x3A70 bytes per block.) VZone: 0x0B PZone: 0x04 Head: 1 This is a ROM region. Offset: 0x02F9F860 LBA range: 0x0D82 - 0x0E93 (0x3FC0 bytes per block.) VZone: 0x0A PZone: 0x03 Head: 1 This is a ROM region. Offset: 0x033E33E0 LBA range: 0x0E94 - 0x0FB7 (0x4510 bytes per block.) VZone: 0x09 PZone: 0x02 Head: 1 This is a ROM region. Offset: 0x038CFA20 LBA range: 0x0FB8 - 0x10DB (0x47B8 bytes per block.) VZone: 0x08 PZone: 0x01 Head: 1 This is a ROM region. 3 Link to comment Share on other sites More sharing options...
kyrin64 Posted January 6, 2015 Share Posted January 6, 2015 Is their a functioning 64DD emulator I don't have any knowledge on that, I've heard nemu64 but I'm not sure, but I really hope their is Stuff to find in the Mario 64 Disk version even though I it doubt it Link to comment Share on other sites More sharing options...
Arcaith Posted January 6, 2015 Share Posted January 6, 2015 Apparently the beginnings of an emulator are being worked on. 1 Link to comment Share on other sites More sharing options...
Twili Posted January 12, 2015 Author Share Posted January 12, 2015 I found all of the model data in Doshin the Giant. Here's some pics: You can download the files that contain model data here: http://www.mediafire.com/download/3u82tap5l7ttr4k/doshinstuff.zip You'll need xdaniel's DLViewer: https://ozmav.googlecode.com/files/DLViewer-v001.rar The first screenshot is from Doshin_0x738C0.dat, the second is from Doshin_0x1BFBE8.dat, and the third is from Doshin_0x5824D8.dat. For the first file, I had to convert the RAM pointers to regular segment pointers with the assistance of a tool I wrote. The other 2 files are completely untouched as they appeared in NUD-DKDJ-JPN.bin. Note that I didn't fix up every display list in the first file; only the ones that had static texture pointers. script.txt can be loaded by the viewer to execute the hand-picked display lists I converted the pointers for in the first file. Read the readme.txt included with DLViewer for instructions on using it. Protips: The first file needs to be loaded to segment 0x06, the other 2 need 0x01. Use the finddlists function on the other 2. One of them will lag a bit, so once everything is rendered, press the + key on your number pad to switch from rendering all display lists to individual ones. + and - browse through them. Super Mario 64 Disk Version is dumped now, by the way. I don't have it yet, however. 5 Link to comment Share on other sites More sharing options...
spinout Posted January 17, 2015 Share Posted January 17, 2015 64DD emulation development for those interested: http://forums.cen64.com/viewtopic.php?f=6&t=155&start=50 Link to comment Share on other sites More sharing options...
Vexiant Posted January 17, 2015 Share Posted January 17, 2015 I don't think MarathonMan intends on adding debugging features. Correct me if I'm wrong, but from what I can recollect, he had no interest in it. Link to comment Share on other sites More sharing options...
spinout Posted January 18, 2015 Share Posted January 18, 2015 Somebody else just committed the first stuff for a windows debugger. Promising. 1 Link to comment Share on other sites More sharing options...
Twili Posted February 21, 2015 Author Share Posted February 21, 2015 Super Mario 64 disk version: http://bsxproj.superfamicom.org/64dd/dump/SM64Disk_jimmy.zip 4 Link to comment Share on other sites More sharing options...
Twili Posted March 31, 2015 Author Share Posted March 31, 2015 Ura Zelda will see the light of day soon. 3 Link to comment Share on other sites More sharing options...
boggle69 Posted April 1, 2015 Share Posted April 1, 2015 I can't wait for that day. Link to comment Share on other sites More sharing options...
Recommended Posts