X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?p=rmac;a=blobdiff_plain;f=kwgen.c;h=d2260c157ec5f6f4c1913ba45b454a5b624290b3;hp=b644b106ffac2ae27e7722e25d4d9b1b3e45f15e;hb=c38505ee4b2a0de59926107e52fb8bb84041a0e4;hpb=d0c28c349ddfb8393568037f68bddbe8979ce0df diff --git a/kwgen.c b/kwgen.c index b644b10..d2260c1 100644 --- a/kwgen.c +++ b/kwgen.c @@ -1,7 +1,7 @@ // -// RMAC - Reboot's Macro Assembler for the Atari Jaguar Console System +// RMAC - Reboot's Macro Assembler for all Atari computers // KWGEN.C - Keyword & Mnemonic Definition and State Machine Creation Tool -// Copyright (C) 199x Landon Dyer, 2011 Reboot and Friends +// Copyright (C) 199x Landon Dyer, 2011-2020 Reboot and Friends // RMAC derived from MADMAC v1.07 Written by Landon Dyer, 1986 // Source utilised with the kind permission of Landon Dyer // @@ -40,8 +40,8 @@ * Tunable definitions * */ -#define TABSIZE 1024 /* state table size */ -#define NSTRINGS 500 /* maximum number of keywords */ +#define TABSIZE 2048 /* state table size */ +#define NSTRINGS 1024 /* maximum number of keywords */ #define STRPOOLSIZ (NSTRINGS * 10) /* size of string pool */ @@ -421,3 +421,4 @@ void panic(char * s) fprintf(stderr, "Panic: %s\n", s); exit(1); } +