Making an ISO file

From NeoGeo Development Wiki
Revision as of 03:35, 16 February 2017 by Furrtek (talk | contribs) (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...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

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.