* dv-m68hc11tim.c (cycle_to_string): Add flags parameter to better
[deliverable/binutils-gdb.git] / sim / m68hc11 / dv-m68hc11sio.c
index ec7a46de50692de1a70cde7f5e9e05e2a15d0e68..655a6dbe0d144ff955c459bddbd212d6f1fc2683 100644 (file)
@@ -463,7 +463,8 @@ m68hc11sio_info (struct hw *me)
       n = (clock_cycle - t) / controller->baud_cycle;
       n = controller->data_length - n;
       sim_io_printf (sd, "  Transmit finished in %s (%d bit%s)\n",
-                    cycle_to_string (cpu, t), n, (n > 1 ? "s" : ""));
+                    cycle_to_string (cpu, t, PRINT_TIME | PRINT_CYCLE),
+                     n, (n > 1 ? "s" : ""));
     }
   if (controller->rx_poll_event)
     {
@@ -471,7 +472,7 @@ m68hc11sio_info (struct hw *me)
 
       t = hw_event_remain_time (me, controller->rx_poll_event);
       sim_io_printf (sd, "  Receive finished in %s\n",
-                    cycle_to_string (cpu, t));
+                    cycle_to_string (cpu, t, PRINT_TIME | PRINT_CYCLE));
     }
   
 }
This page took 0.023129 seconds and 4 git commands to generate.