Added Makefile.wat master
authorRobert Pengelly <robertapengelly@hotmail.com>
Sun, 16 Mar 2025 12:11:59 +0000 (12:11 +0000)
committerRobert Pengelly <robertapengelly@hotmail.com>
Sun, 16 Mar 2025 12:11:59 +0000 (12:11 +0000)
Makefile.unix
Makefile.w32
Makefile.wat [new file with mode: 0644]
hashtab.c
hashtab.h
intel.c
intel.h
process.c

index 35cd61701d2ef9c4fc301fc9b3eaf6bdf661c82c..b859deb039d652908b9160f5a74d7907b3e14f88 100644 (file)
@@ -22,5 +22,6 @@ sasm: $(CSRC)
 endif
 
 clean:
+
        if [ -f sasm ]; then rm -rf sasm; fi
        if [ -f sasm.exe ]; then rm -rf sasm.exe; fi
index 533c7f0790ce0fb2d4a1fa45c313502bf79e740c..41bb95fbe76e97b8f036acbab4af3d4592556362 100644 (file)
@@ -12,8 +12,10 @@ CSRC                :=  as.c bin.c cstr.c elks.c eval.c expr.c fixup.c frag.c ha
 all: sasm.exe
 
 clean:
+
        if exist sasm ( del /q sasm )
        if exist sasm.exe ( del /q sasm.exe )
 
 sasm.exe: $(CSRC)
+
        $(CC) $(CFLAGS) -o $@ $^
diff --git a/Makefile.wat b/Makefile.wat
new file mode 100644 (file)
index 0000000..4abd488
--- /dev/null
@@ -0,0 +1,18 @@
+#******************************************************************************
+# @file             Makefile.w32
+#******************************************************************************
+SRCDIR              ?=  $(CURDIR)
+VPATH               :=  $(SRCDIR)
+
+SRC                 :=   as.c bin.c cstr.c elks.c eval.c expr.c fixup.c frag.c hashtab.c intel.c kwd.c lex.c lib.c list.c listing.c ll.c macro.c process.c report.c section.c symbol.c vector.c
+
+all: sasm.exe
+
+sasm.exe: $(SRC)
+
+       wcl -fe=$@ $^
+
+clean:
+
+       for /r %%f in (*.obj) do ( if exist %%f ( del /q %%f ) )
+       if exist sasm.exe ( del /q sasm.exe )
index 9ddaf7e83a6f4080f1d1983f7ffccc50a04a1121..328b622dc126059eeefd112fe6a42ab3b2a9cf83 100644 (file)
--- a/hashtab.c
+++ b/hashtab.c
@@ -103,7 +103,7 @@ static unsigned int hash_string (const void *p, unsigned int length) {
     unsigned int result = 0;
     
     for (i = 0; i < length; i++) {
-        result = (((unsigned short) str[i]) << 4) + (result >> 9) + result + (result >> 3) + (((unsigned short) str[i]) << 2) - (result << 24);
+        result = (((unsigned short) str[i]) << 4) + (result >> 9) + result + (result >> 3) + (((unsigned short) str[i]) << 2) - (result << 12);
     }
     
     return result;
@@ -112,8 +112,8 @@ static unsigned int hash_string (const void *p, unsigned int length) {
 
 struct hashtab_name *hashtab_alloc_name (const char *str) {
 
-    struct hashtab_name *name;
     unsigned int bytes = strlen (str), hash = hash_string (str, bytes);
+    struct hashtab_name *name;
     
     if ((name = malloc (sizeof (*name))) == NULL) {
         return NULL;
index 47aab3bf2afd43dd6411933c084525c1e631e657..ed8e82898156dc39de666e0277740fcd65752d10 100644 (file)
--- a/hashtab.h
+++ b/hashtab.h
@@ -7,7 +7,7 @@
 struct hashtab_name {
 
     const char *chars;
-    int bytes, hash;
+    unsigned int bytes, hash;
 
 };
 
diff --git a/intel.c b/intel.c
index 26269d002453e46963461348f6d4adb5b00823f0..f9e63e0f4e5e20f6e9430a855f2f70e3866a2c63 100644 (file)
--- a/intel.c
+++ b/intel.c
@@ -890,7 +890,7 @@ struct instruction {
     struct sib_byte sib;
     
     struct reg_entry *base_reg, *index_reg;
-    unsigned int types[MAX_OPERANDS];
+    unsigned long types[MAX_OPERANDS];
     
     struct expr *imms[MAX_OPERANDS];
     struct expr *disps[MAX_OPERANDS];
@@ -3065,7 +3065,9 @@ static void optimize_size_of_imms (void) {
 
 static int match_template (void) {
 
-    unsigned int found_reverse_match = 0, suffix_check = 0;
+    unsigned long suffix_check = 0;
+    unsigned int found_reverse_match = 0;
+    
     struct template *template;
     
     switch (instruction.suffix) {
diff --git a/intel.h b/intel.h
index 98711c8b7c7caab5b2e893d2d0e5ffa6b79f6c8a..690c0ee1be7144d595b2d34c74e01440f740df0f 100644 (file)
--- a/intel.h
+++ b/intel.h
@@ -118,7 +118,9 @@ struct template {
 struct reg_entry {
 
     const char *name;
-    unsigned int type, number;
+    
+    unsigned long type;
+    unsigned int number;
 
 };
 
index ec1239b3ca0b5b00cff38c99e9a26c40631d1778..8264d8cfe1f3eb635a33fd8fb0b4e6b6487a8cb8 100644 (file)
--- a/process.c
+++ b/process.c
@@ -356,9 +356,6 @@ static void handler_include (char *start, char **pp) {
     char *inc_path, *tmp;
     FILE *fp;
     
-    struct hashtab_name *key;
-    struct macro *m;
-    
     if (**pp != '"' && **pp != '<') {
     
         report_line_at (orig_fn, orig_ln, REPORT_ERROR, start, *pp, "%%include expects \"FILENAME\" or <FILENAME>");
@@ -428,33 +425,6 @@ static void handler_include (char *start, char **pp) {
 end:
     
     set_filename_and_line_number (orig_fn, orig_ln);
-    
-    if ((key = find_macro ("__FILE__"))) {
-    
-        if ((m = get_macro (key)) && m->type == MACRO_BUILTIN) {
-        
-            free (m->value);
-            
-            m->value = xmalloc (1 + strlen (orig_fn) + 2);
-            sprintf (m->value, "\"%s\"", orig_fn);
-        
-        }
-    
-    }
-    
-    if ((key = find_macro ("__LINE__"))) {
-    
-        if ((m = get_macro (key)) && m->type == MACRO_BUILTIN) {
-        
-            free (m->value);
-            
-            m->value = xmalloc (23);
-            sprintf (m->value, "%lu", orig_ln);
-        
-        }
-    
-    }
-    
     free (sname);
 
 }
@@ -539,33 +509,11 @@ struct pp_pseudo_op_entry *find_directive (char *name) {
 
 static void init_builtin_macros (void) {
 
-    static char *builtins[] = { "__FILE__", "__LINE__" };
     char *name;
     
     struct hashtab_name *key;
     struct macro *m;
     
-    unsigned long cnt = (sizeof (builtins) / sizeof (*builtins));
-    unsigned i;
-    
-    for (i = 0; i < cnt; i++) {
-    
-        name = xstrdup (builtins[i]);
-        
-        if ((key = hashtab_alloc_name (name))) {
-        
-            m = xmalloc (sizeof (*m));
-            m->type = MACRO_BUILTIN;
-            
-            m->name = name;
-            m->value = xstrdup ("");
-            
-            push_macro (key, m);
-        
-        }
-    
-    }
-    
     name = xstrdup ("__SASM__");
     
     if ((key = hashtab_alloc_name (name))) {
@@ -582,59 +530,6 @@ static void init_builtin_macros (void) {
 
 }
 
-static void init_date_time_macros (void) {
-
-    char *timep, *buf, *name, temp[3] = { 0 };
-    time_t now;
-    
-    struct hashtab_name *key;
-    struct macro *m;
-    
-    time (&now);
-    timep = ctime (&now);
-    
-    name = xstrdup ("__TIME__");
-    
-    if ((key = hashtab_alloc_name (name))) {
-    
-        buf = xmalloc (11);
-        sprintf (buf, "\"%.8s\"", timep + 11);;
-        
-        m = xmalloc (sizeof (*m));
-        m->type = MACRO_BUILTIN;
-        
-        m->name = name;
-        m->value = buf;
-        
-        push_macro (key, m);
-    
-    }
-    
-    name = xstrdup ("__DATE__");
-    
-    if ((key = hashtab_alloc_name (name))) {
-    
-        sprintf (temp, "%.2s", timep + 8);
-        buf = xmalloc (14);
-        
-        if (atoi (temp) < 10) {
-            sprintf (buf, "\"%.3s %.1s %.4s\"", timep + 4, timep + 9, timep + 20);
-        } else {
-            sprintf (buf, "\"%.3s %.2s %.4s\"", timep + 4, timep + 8, timep + 20);
-        }
-        
-        m = xmalloc (sizeof (*m));
-        m->type = MACRO_BUILTIN;
-        
-        m->name = name;
-        m->value = buf;
-        
-        push_macro (key, m);
-    
-    }
-
-}
-
 int preprocess_init (void) {
 
     struct list *item;
@@ -650,7 +545,6 @@ int preprocess_init (void) {
     }
     
     init_builtin_macros ();
-    init_date_time_macros ();
     
     if (state->pplist) {
     
@@ -1332,9 +1226,6 @@ void process_file (const char *ifile) {
     struct cond *cond;
     int cond_idx, proc_idx, seg_idx;
     
-    struct hashtab_name *key;
-    struct macro *m;
-    
     if (!ifile || strcmp (ifile, "-") == 0) {
     
         set_filename (xstrdup ("<stdin>"));
@@ -1356,21 +1247,6 @@ void process_file (const char *ifile) {
     set_line_number (0);
     new_line_number = 1;
     
-    if ((key = find_macro ("__FILE__"))) {
-    
-        const char *filename = get_filename ();;
-        
-        if (filename && (m = get_macro (key)) && m->type == MACRO_BUILTIN) {
-        
-            free (m->value);
-            
-            m->value = xmalloc (1 + strlen (filename) + 2);
-            sprintf (m->value, "\"%s\"", filename);
-        
-        }
-    
-    }
-    
     load_line_internal_data = load_line_create_internal_data (&new_line_number);
     
     while (!load_line (&line, &line_end, &real_line, &real_line_len, &newlines, fp, &load_line_internal_data)) {
@@ -1385,19 +1261,6 @@ void process_file (const char *ifile) {
         
         }
         
-        if ((key = find_macro ("__LINE__"))) {
-        
-            if ((m = get_macro (key)) && m->type == MACRO_BUILTIN) {
-            
-                free (m->value);
-                
-                m->value = xmalloc (23);
-                sprintf (m->value, "%lu", get_line_number ());
-            
-            }
-        
-        }
-        
         start = line;
         caret = (line = skip_whitespace (line));