Making an ISO file: Difference between revisions

From NeoGeo Development Wiki
Jump to navigation Jump to search
(Created page with "To make your own ISO file: See Game CD structure. Use '''mkisofs''' (Windows, Linux). <pre> mkisofs -iso-level 1 -o output.iso -pad -N -V "NGCDTEST" P1.PRG M1.Z80 SPR.S...")
 
m (Furrtek moved page Burning a game CD to Making an ISO file)
 
(No difference)

Latest revision as of 04:16, 17 March 2017

To make your own ISO file:

See Game CD structure.

Use mkisofs (Windows, Linux).

mkisofs -iso-level 1 -o output.iso -pad -N -V "NGCDTEST" P1.PRG M1.Z80 SPR.SPR S1.FIX V1.PCM ABS.TXT BIB.TXT CPY.TXT IPL.TXT
  • -iso-level-1: The NeoGeo CD is compatible with this level only.
  • -pad: Just in case.
  • -N: Remove file version info.
  • -V: Specify volume ID string.