]> Shamusworld >> Repos - rmac/blobdiff - riscasm.c
Added Jaguar Object Processor assembler.
[rmac] / riscasm.c
index d595ebc96257f275a907febb33e63b9cebcf81d5..0b09bf18ba3c641fa15189cf70cdd32d2c6d439b 100644 (file)
--- a/riscasm.c
+++ b/riscasm.c
@@ -13,6 +13,7 @@
 #include "expr.h"
 #include "mark.h"
 #include "procln.h"
+#include "rmac.h"
 #include "sect.h"
 #include "token.h"
 
@@ -134,16 +135,6 @@ static const char * malformErr[] = {
 };
 
 
-//
-// Convert a string to uppercase
-//
-static void strtoupper(char * s)
-{
-       while (*s)
-               *s++ &= 0xDF;
-}
-
-
 //
 // Function to return "malformed expression" error
 // This is done mainly to remove a bunch of GOTO statements in the parser