/*
* CP/M 2.2 Converts an CP/M kernel to Mostek binary format
*
* Copyright (C) 1990-93 by Udo Munk
*
* History:
* 23-DEZ-90 Development with Coherent 3.0
* 11-MAR-93 comments in english and ported to COHERENT 4.0
*/
/*
* This program converts a CPMxx.COM file, which was created
* with MOVCPM, into a Mostek binary, that can be written to
* the system tracks of the boot disk with putsys.
*/
char buf[128];
main(argc, argv)
int argc;
char *argv[];
{
int in, out;
if (argc != 2) {
puts("usage: cpmbin infile");
exit(1);
}