* src/port.h: added TARGET_Z80_LIKE macro
[fw/sdcc] / as / z80 / asm.h
index d179177a2c53ea38ded1563d4ae9a8e0939a3674..812f20bc40e958e61c55500b67fe8d278b5478e3 100644 (file)
@@ -18,7 +18,7 @@
 /*
  * Case Sensitivity Flag
  */
-#define        CASE_SENSITIVE  0
+#define        CASE_SENSITIVE  1
 
 /*)Module      asm.h
  *
@@ -524,7 +524,7 @@ extern      VOID            usage();
 extern char            endline();
 extern char            get();
 extern VOID            getid();
-extern int             getline();
+extern int             as_getline();
 extern int             getmap();
 extern char            getnb();
 extern VOID            getst();
@@ -592,10 +592,13 @@ extern    VOID            out_tw();
 
 extern char *          cpu;
 extern char *          dsft;
-extern int             hilo;
+extern int             hilo;
 extern struct  mne     mne[];
 
 /* Machine dependent functions */
 
 extern VOID            minit();
 
+/* strcmpi.c */
+extern int as_strcmpi(const char *s1, const char *s2);
+extern int as_strncmpi(const char *s1, const char *s2, size_t n);