Implement converter Binary2NitroRom to read a DS ROM. The output is a node container with the program information, banner, program files and data files.
Example
using var rom = NodeFactory.FromFile(romPath).TransformWith<Binary2NitroRom>();
the hierarchy of the container will become:
system/info
system/copyright_logo
system/banner/info
system/banner/icon
system/arm9
system/overlays9/overlay_x
system/arm7
system/overlays7/overlay_x
data/
The reference code is from modime and specs from GBATek.
Description
Implement converter
Binary2NitroRom
to read a DS ROM. The output is a node container with the program information, banner, program files and data files.Example
the hierarchy of the container will become:
system/info
system/copyright_logo
system/banner/info
system/banner/icon
system/arm9
system/overlays9/overlay_x
system/arm7
system/overlays7/overlay_x
data/
The reference code is from modime and specs from GBATek.