Skip to content

re4mat/bomberman-nes

 
 

Repository files navigation

Bomberman (NES) commented disassembly

PNG

To compile the .PRG file with DASM, run the following command:

dasm Bomberman.asm -f3 -oBomberman.prg -lBomberman.lst

Then you need to concatenate the header, PRG ROM, and CHR ROM into a .NES file. Included are pre-made headers for creating either an iNES ROM (iNES_Header.bin) or a NES 2.0 ROM (NES_Header.bin)

For UNIX/Linux/Mac

Run the following command:

iNES ROM

cat iNES_Header.bin Bomberman.prg Bomberman.chr > Bomberman\ \(USA\).nes

NES 2.0 ROM

cat NES_Header.bin Bomberman.prg Bomberman.chr > Bomberman\ \(USA\).nes

For Windows

Run the following command:

iNES ROM

copy /B iNES_Header.bin + Bomberman.prg + Bomberman.chr /B "Bomberman (USA).nes"

NES 2.0 ROM

copy /B NES_Header.bin + Bomberman.prg + Bomberman.chr /B "Bomberman (USA).nes"

Checksum of compiled ROM (crc32)

iNES: b9804046

NES 2.0: f5daaf10

About

Commented disassembly (source code) of NES game Bomberman

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages

  • Assembly 96.0%
  • C 4.0%