From 4da276b88f57af0b08f637fc10b1a7c31404b6a1 Mon Sep 17 00:00:00 2001 From: Russell Joyce Date: Wed, 24 Jun 2020 19:17:01 +0100 Subject: [PATCH] Increased maximum number of function parameters from 16 to 32 --- platform.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/platform.h b/platform.h index 627ed37..03559b0 100644 --- a/platform.h +++ b/platform.h @@ -57,7 +57,7 @@ #define STRING_TABLE_SIZE (97) /* shared string table size */ #define STRING_LITERAL_TABLE_SIZE (97) /* string literal table size */ #define RESERVED_WORD_TABLE_SIZE (97) /* reserved word table size */ -#define PARAMETER_MAX (16) /* maximum number of parameters to a function */ +#define PARAMETER_MAX (32) /* maximum number of parameters to a function */ #define LINEBUFFER_MAX (256) /* maximum number of characters on a line */ #define LOCAL_TABLE_SIZE (11) /* size of local variable table (can expand) */ #define STRUCT_TABLE_SIZE (11) /* size of struct/union member table (can expand) */