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)
Run the following command:
cat iNES_Header.bin Bomberman.prg Bomberman.chr > Bomberman\ \(USA\).nes
cat NES_Header.bin Bomberman.prg Bomberman.chr > Bomberman\ \(USA\).nes
Run the following command:
copy /B iNES_Header.bin + Bomberman.prg + Bomberman.chr /B "Bomberman (USA).nes"
copy /B NES_Header.bin + Bomberman.prg + Bomberman.chr /B "Bomberman (USA).nes"
iNES: b9804046
NES 2.0: f5daaf10
