1992 劃面選關 1050-in-1: Difference between revisions
From NESdev Wiki
Jump to navigationJump to search
No edit summary |
|||
Line 32: | Line 32: | ||
== Dumping method == | == Dumping method == | ||
For dumping this cartridge, it's necessary to short this capacitor with a wire : | |||
[[File:Pcb1050in1-capacitor-to-short.jpg|frame|center|dump310331C-32-NRS.lua]] | |||
Next, this script can dump the cartridge with the INLretro dumper : | |||
{| class="wikitable" align="center" style="margin: auto;" | {| class="wikitable" align="center" style="margin: auto;" | ||
Line 40: | Line 43: | ||
| [[File:Dump310331C-32-NRS.lua.txt|frame|center|dump310331C-32-NRS.lua]] | | [[File:Dump310331C-32-NRS.lua.txt|frame|center|dump310331C-32-NRS.lua]] | ||
|} | |} | ||
Under UNIX, the commands to run are : | |||
<pre> | |||
./inlretro -s scripts/inlretro3.lua -c NES -m dump310331c -x 4096 -d 1050in1_PRG_4096kb.nes | |||
cp 1050in1_PRG_4096kb.nes 1050in1_PRG_3072kb.nes | |||
truncate -s 3145744 1050in1_PRG_3072kb.nes | |||
#### For the truncate : 16 B (header) + 3 MB (3072 x 1024) = 3145744 bytes | |||
</pre> |
Revision as of 21:57, 7 March 2023
Hardware
The cartridge has been created by SuperVision.
Two versions are known :
- 1992 劃面選關 1050-in-1 : FAMICOM version
- Super 1050 in 1 (Int'L) [Supervision Japan] : NES version
NES PCB Front picture | NES PCB Bottom mirrored picture |
---|---|
Software
The 1050 in 1 rom size is 3MB.
The rom uses the NES 2.0 Mapper 354 submapper 1.
It contains 81 different games.
N° | Game Name | Original Game Name | Level |
---|---|---|---|
1 | NORTHERN KEN II | Hokuto No Ken II | Level 1 |
Dumping method
For dumping this cartridge, it's necessary to short this capacitor with a wire :
Next, this script can dump the cartridge with the INLretro dumper :
dump310331C-32-NRS.lua |
---|
File:Dump310331C-32-NRS.lua.txt |
Under UNIX, the commands to run are :
./inlretro -s scripts/inlretro3.lua -c NES -m dump310331c -x 4096 -d 1050in1_PRG_4096kb.nes cp 1050in1_PRG_4096kb.nes 1050in1_PRG_3072kb.nes truncate -s 3145744 1050in1_PRG_3072kb.nes #### For the truncate : 16 B (header) + 3 MB (3072 x 1024) = 3145744 bytes