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 44
|
/* truedam.ccc -- Misosys C program to query/set truedam flag on xtrs */
/* Copyright (c) 1998, Timothy Mann */
/* $Id: truedam.ccc,v 1.3 2008/06/26 04:39:56 mann Exp $ */
/* This software may be copied, modified, and used for any purpose
* without fee, provided that (1) the above copyright notice is
* retained, and (2) modified versions are clearly marked as having
* been modified, with the modifier's name and the date included. */
#option redirect 0
#include "xtrsemt.h"
#include "xtrsemt.ccc" /* could use separate compilation instead */
usage(n)
int n;
{
fprintf(stderr, "usage: truedam [0|1]\n");
exit(1);
}
int main(argc, argv)
int argc;
char **argv;
{
int hl, bc, de, ret;
char *retp;
int func;
if (argc == 1) {
func = EMT_MISC_QUERY_TRUEDAM;
} else if ((argc == 2) && isdigit(argv[1][0])) {
func = EMT_MISC_SET_TRUEDAM;
if (strlen(argv[1]) != 1) usage();
hl = atoi(argv[1]);
if (hl > 1) usage();
} else {
usage();
}
emt_4misc(func, &hl, &bc, &de);
printf("truedam = %d\n", hl);
exit(0);
}
|