X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?p=rmac;a=blobdiff_plain;f=kwgen.c;h=1717edfb0386577584982ed37a315e591a328ccc;hp=8404d670dd57fc65827d11f9c9c01be76db183f4;hb=05d0350b35a6a6b255cb2a3fab7796f5d4ee4d02;hpb=d09274f3e3d4dca122c308a621ea8edc100b7d99 diff --git a/kwgen.c b/kwgen.c index 8404d67..1717edf 100644 --- a/kwgen.c +++ b/kwgen.c @@ -1,9 +1,9 @@ // -// 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-2017 Reboot and Friends // RMAC derived from MADMAC v1.07 Written by Landon Dyer, 1986 -// Source Utilised with the Kind Permission of Landon Dyer +// 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); } +