include/elf/
[deliverable/binutils-gdb.git] / gas / config / tc-h8300.c
index 794a509792a689f1fd39b05fb1b04ab3927ce868..6e6a170a387b66c5ebdc35dc4dba780352941124 100644 (file)
@@ -136,6 +136,20 @@ h8300sxmode (arg)
 #endif
 }
 
+void
+h8300sxnmode (arg)
+     int arg ATTRIBUTE_UNUSED;
+{
+  Smode = 1;
+  Hmode = 1;
+  SXmode = 1;
+  Nmode = 1;
+#ifdef BFD_ASSEMBLER
+  if (!bfd_set_arch_mach (stdoutput, bfd_arch_h8300, bfd_mach_h8300sxn))
+    as_warn (_("could not set architecture and machine"));
+#endif
+}
+
 void
 sbranch (size)
      int size;
@@ -163,6 +177,7 @@ const pseudo_typeS md_pseudo_table[] =
   {"h8300s",  h8300smode,  0},
   {"h8300sn", h8300snmode, 0},
   {"h8300sx", h8300sxmode, 0},
+  {"h8300sxn", h8300sxnmode, 0},
   {"sbranch", sbranch, L_8},
   {"lbranch", sbranch, L_16},
 
This page took 0.031367 seconds and 4 git commands to generate.