* sim-options.c (standard_options): Fix the names of H8
[binutils-gdb.git] / sim / common / sim-cpu.h
index f8996f5bd268ce85cdae0a40d1dfe543476f96b3..069fead48089e55eb8dc3090a44aa066d66ddbf7 100644 (file)
@@ -137,6 +137,11 @@ extern void sim_cpu_free (sim_cpu *);
 /* Return a pointer to the cpu data for CPU_NAME, or NULL if not found.  */
 extern sim_cpu *sim_cpu_lookup (SIM_DESC, const char *);
 
+/* Return prefix to use in cpu specific messages.  */
+extern const char *sim_cpu_msg_prefix (sim_cpu *);
+/* Cover fn to sim_io_eprintf.  */
+extern void sim_io_eprintf_cpu (sim_cpu *, const char *, ...);
+
 /* Get/set a pc value.  */
 #define CPU_PC_GET(cpu) ((* CPU_PC_FETCH (cpu)) (cpu))
 #define CPU_PC_SET(cpu,newval) ((* CPU_PC_STORE (cpu)) ((cpu), (newval)))