Games::NES::ROM

Games::NES::ROM is a Perl module used to view information about an NES game from a ROM file.
Download

Games::NES::ROM Ranking & Summary

Advertisement

  • Rating:
  • License:
  • Perl Artistic License
  • Price:
  • FREE
  • Publisher Name:
  • Brian Cassidy
  • Publisher web site:
  • http://search.cpan.org/~bricas/DBIx-Class-Loader-ADO-0.07/lib/DBIx/Class/Loader/ADO.pm

Games::NES::ROM Tags


Games::NES::ROM Description

Games::NES::ROM is a Perl module used to view information about an NES game from a ROM file. Games::NES::ROM is a Perl module used to view information about an NES game from a ROM file.SYNOPSIS use Games::NES::ROM; # Read in the ROM my $rom = Games::NES::ROM->new( 'file.nes' ); # Access the details print 'PRG Banks: ', $rom->PRG_count, "n"; print 'CHR Banks: ', $rom->CHR_count, "n"; # etc... # View the CRC checksum print 'CRC: ', $rom->CRC;This module loads the details of an NES rom file. An NES ROM file is layed out as follows: +-----------+---------------+---------+---------+ Header | NESx01a | X X | X X X X | X X X X | 16 Bytes +-----------+---------------+---------+---------+ | | | PRG Banks (PC * 16384 Bytes) | | | +-----------------------------------------------+ | | | CHR Banks (CC * 8192 Bytes) | | | +-----------------------------------------------+ | | | Title (128 Bytes - Optional) | | | +-----------------------------------------------+Requirements:· PerlINSTALLATION perl Makefile.PL make make test make install


Games::NES::ROM Related Software