]> Shamusworld >> Repos - rln/blobdiff - rln.h
Handle absolute BSS segment location of 'xt'
[rln] / rln.h
diff --git a/rln.h b/rln.h
index c3d39cf9c3a6da4b1aa81b1f350afc17dda808e6..1a448ce63d542ed8b7191513d9610f863c15be0e 100644 (file)
--- a/rln.h
+++ b/rln.h
@@ -1,6 +1,6 @@
 //
-// RLN - Reboot's Linker for the Atari Jaguar console system
-// Copyright (C) 199x Allan K. Pratt, 2011-2018 Reboot & Friends
+// RLN - Renamed Linker for the Atari Jaguar console system
+// Copyright (C) 199x Allan K. Pratt, 2011-2021 Reboot & Friends
 //
 
 #ifndef __RLN_H__
@@ -43,8 +43,8 @@
 #endif
 
 #define MAJOR   1                      // Major version number
-#define MINOR   6                      // Minor version number
-#define PATCH   1                      // Patch release number
+#define MINOR   7                      // Minor version number
+#define PATCH   0                      // Patch release number
 
 #ifdef WIN32
 #define PLATFORM     "Win32"           // Release platform - Windows
@@ -68,7 +68,7 @@
 #define OST_BLOCK    0x400000          // Output symbol table block (4MB)
 #define DSTSEG_D     1                         // Include file destination seg (DATA)
 #define DSTSEG_T     2                         // Include file destination seg (TEXT)
-#define MAXARGS      256                       // Max number of args in a command file
+#define MAXARGS      4096                      // Max number of args in a command file
 
 // Headers
 
@@ -81,6 +81,7 @@
 // Rather than rely on dodgy compilers for something that's now a C99 standard,
 // let's do this:
 #include <stdint.h>
+#include <dirent.h>
 
 struct OHEADER
 {