return new;
}
+/* look for immediate notation '#' */
+static char *
+parse_imm_notation(s)
+char *s;
+{
+ static int isa_imm;
+
+ if( s == (char *)(NULL) ) return( (char *)(isa_imm) );
+ isa_imm=0;
+ while( isspace(*s) )
+ s++;
+ if( *s=='#' ) {
+ isa_imm=1;
+ s++;
+ }
+ return(s);
+}
static char *
parse_mem(s, reg, off, siz)
return s;
}
-/* look for immediate notation '#' */
-static char *
-parse_imm_notation(s)
-char *s;
-{
- static int isa_imm;
-
- if( s == (char *)(NULL) ) return( (char *)(isa_imm) );
- isa_imm=0;
- while( isspace(*s) )
- s++;
- if( *s=='#' ) {
- isa_imm=1;
- s++;
- }
- return(s);
-}
-
-
-
/* This is the guts of the machine-dependent assembler. STR points to a
machine dependent instruction. This function is supposed to emit
return gap;
}
-
+void
+dump_literals (i)
+ int i;
+{
+ /* does nothing for now. */
+}
#ifdef BFD_ASSEMBLER