]> Shamusworld >> Repos - rmac/blobdiff - eagen.c
Fix for bug where in alcyon mode the tokenizer would read past the end of the line.
[rmac] / eagen.c
diff --git a/eagen.c b/eagen.c
index a45f4bd4af0a2609e724f81cacd528267124d9a7..ca87fcc386a8ad3d79c66264c80f942ff7769cf8 100644 (file)
--- a/eagen.c
+++ b/eagen.c
@@ -1,18 +1,18 @@
 //
 // RMAC - Reboot's Macro Assembler for the Atari Jaguar Console System
 // EAGEN.C - Effective Address Code Generation
-// Copyright (C) 199x Landon Dyer, 2011 Reboot and Friends
+// Copyright (C) 199x Landon Dyer, 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
 //
 
-#include "rmac.h"
+#include "eagen.h"
 #include "amode.h"
 #include "sect.h"
 #include "mark.h"
 #include "error.h"
 #include "mach.h"
-#include "risca.h"
+#include "riscasm.h"
 
 #define eaNgen    ea0gen
 #define amN       am0
@@ -21,6 +21,7 @@
 #define aNexpr    a0expr
 #define aNixreg   a0ixreg
 #define aNixsiz   a0ixsiz
+#define AnESYM    a0esym
 #include "eagen0.c"
 
 #define eaNgen    ea1gen
@@ -30,4 +31,5 @@
 #define aNexpr    a1expr
 #define aNixreg   a1ixreg
 #define aNixsiz   a1ixsiz
+#define AnESYM    a1esym
 #include "eagen0.c"