aboutsummaryrefslogtreecommitdiff
path: root/ksiders/unmakatr.c
blob: c50b55dcd4655337c87814191ae5ea5ae1bedb52 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
/* Copyright 1997 Ken Siders */

#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include "atr.h"
#include "atdos.h"


/********************************************************************
 Testing 
********************************************************************/


int main( int argc, char **argv)
   {
   long size = 0;

   printf("MakeAtr Version 0.9u (c)1997 Ken Siders\n");
	printf("Ported and modified by B. Watson, 2007\n");
   printf("This program may be freely distributed\n\n");


   if (argc != 3)
      {
      printf("usage: unmakatr atrname.atr file\n\n");
      }
   else
      {
      size = ExtractExeFromBootAtr( argv[1], argv[2] );
      if ( size <= 0 ) {
         printf("Error #%ld encountered in extracting\n\n", -size);
			exit(size);
		} else {
         printf("No errors, %s extracted successfully (%ld bytes)\n\n", argv[2], size);
		}
	}

	exit(0);

}