Software hex editor for unify neo files?

Jonap

Mega Shock!!
Joined
Oct 10, 2006
Posts
100
Hello friends im going to fix a game i have and i need to unify in one file the files .P1 and .P2 of the rom, i supose it exist a software for dont make it on hex editor manually?

Thanks!
 

skate323k137

Professional College Dropout
10 Year Member
Joined
Jan 7, 2013
Posts
4,197
If you just need to joint them, in linux:

# cat rom1.bin rom2.bin > joined.bin

Similar can be done with copy /b on Windows
 

Jonap

Mega Shock!!
Joined
Oct 10, 2006
Posts
100
If you just need to joint them, in linux:

# cat rom1.bin rom2.bin > joined.bin

Similar can be done with copy /b on Windows


i try with two sintax on windows but dont work, This doesn't concatenate the files, it overwrites the second with the first.

1- copy/b 049-p1.p1+049-p2.p2 p1_2.bin
2- copy 049-p1.p1/b+049-p2.p2/b p1_2.bin/b
 
Top