[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Doubling up BIN files to burn to EPROM
On Aug 3, 8:17 pm, Jonno Downes <jonno...@gmail.com> wrote:
> If you're using windows, assuming your file is called say
> "27128_eprom.bin" you can make a new file containing 2 copies of the
> input file with the following command line:
>
> COPY /B 27128_eprom.bin+27128_eprom.bin 27256_eprom.bin
Under MacOS X or Linux, this is similarly:
cat 27128_eprom.bin 27128_eprom.bin > 27256_eprom.bin
Matt