From 3d79deb57e12b8cb5f34e1e727b977b0c299f87b Mon Sep 17 00:00:00 2001 From: Nathan Misner Date: Thu, 2 Feb 2023 12:19:48 -0500 Subject: [PATCH] bugfix for incb pseudo op --- a65.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/a65.c b/a65.c index 122b971..79e93b2 100644 --- a/a65.c +++ b/a65.c @@ -48,7 +48,7 @@ parse the source line and convert it into the object bytes that it represents. char errcode, line[MAXLINE + 1], title[MAXLINE]; int pass = 0; int eject, filesp, forwd, forceabs, listhex; -unsigned address, argattr, bytes, errors, listleft, obj[MAXLINE], pagelen, pc; +unsigned address, argattr, bytes, errors, listleft, obj[65536], pagelen, pc; FILE_INFO filestk[FILES]; FILE *source; TOKEN token; -- 2.38.5