Fix of typecast malloc
[fw/sdcc] / sim / ucsim / cmd.src / info.cc
index 0b7561b79793ba464aeaea545c3a497cbc56a736..9e04cc79fd5b8fc8ed53c027ad46c4bc0f3caf4d 100644 (file)
@@ -39,38 +39,39 @@ Software Foundation, 59 Temple Place - Suite 330, Boston, MA
  * INFO BREAKPOINTS command
  */
 
-int
-cl_info_bp_cmd::do_work(class cl_sim *sim,
-                       class cl_cmdline *cmdline, class cl_console *con)
+//int
+//cl_info_bp_cmd::do_work(class cl_sim *sim,
+//                     class cl_cmdline *cmdline, class cl_console *con)
+COMMAND_DO_WORK_UC(cl_info_bp_cmd)
 {
   int i;
   char *s;
 
-  con->printf("Num Type       Disp Hit   Cnt   Address  What\n");
-  for (i= 0; i < sim->uc->fbrk->count; i++)
+  con->dd_printf("Num Type       Disp Hit   Cnt   Address  What\n");
+  for (i= 0; i < uc->fbrk->count; i++)
     {
-      class cl_brk *fb= (class cl_brk *)(sim->uc->fbrk->at(i));
-      s= sim->uc->disass(fb->addr, NULL);
-      con->printf("%-3d %-10s %s %-5d %-5d 0x%06x %s\n", fb->nr,
-                 "fetch", (fb->perm==brkFIX)?"keep":"del ",
-                 fb->hit, fb->cnt,
-                 fb->addr, s);
+      class cl_brk *fb= (class cl_brk *)(uc->fbrk->at(i));
+      s= uc->disass(fb->addr, NULL);
+      con->dd_printf("%-3d %-10s %s %-5d %-5d 0x%06x %s\n", fb->nr,
+                    "fetch", (fb->perm==brkFIX)?"keep":"del ",
+                    fb->hit, fb->cnt,
+                    fb->addr, s);
       free(s);
     }
-  for (i= 0; i < sim->uc->ebrk->count; i++)
+  for (i= 0; i < uc->ebrk->count; i++)
     {
-      class cl_ev_brk *eb= (class cl_ev_brk *)(sim->uc->ebrk->at(i));
-      con->printf("%-3d %-10s %s %-5d %-5d 0x%06x %s\n", eb->nr,
-                 "event", (eb->perm==brkFIX)?"keep":"del ",
-                 eb->hit, eb->cnt,
-                 eb->addr, eb->id);
+      class cl_ev_brk *eb= (class cl_ev_brk *)(uc->ebrk->at(i));
+      con->dd_printf("%-3d %-10s %s %-5d %-5d 0x%06x %s\n", eb->nr,
+                    "event", (eb->perm==brkFIX)?"keep":"del ",
+                    eb->hit, eb->cnt,
+                    eb->addr, eb->id);
     }
   /*t_addr a;
   class cl_rom *r= (class cl_rom *)(sim->uc->mem(MEM_ROM));
   for (a= 0; a < sim->uc->get_mem_size(MEM_ROM); a++)
     {
       if (r->bp_map->get(a))
-       con->printf("0x%06x\n", a);
+       con->dd_printf("0x%06x\n", a);
        }*/
   return(0);
 }
@@ -80,11 +81,12 @@ cl_info_bp_cmd::do_work(class cl_sim *sim,
  * INFO REGISTERS command
  */
 
-int
-cl_info_reg_cmd::do_work(class cl_sim *sim,
-                        class cl_cmdline *cmdline, class cl_console *con)
+//int
+//cl_info_reg_cmd::do_work(class cl_sim *sim,
+//                      class cl_cmdline *cmdline, class cl_console *con)
+COMMAND_DO_WORK_UC(cl_info_reg_cmd)
 {
-  sim->uc->print_regs(con);
+  uc->print_regs(con);
   return(0);
 }
 
@@ -93,9 +95,10 @@ cl_info_reg_cmd::do_work(class cl_sim *sim,
  * INFO HW command
  */
 
-int
-cl_info_hw_cmd::do_work(class cl_sim *sim,
-                       class cl_cmdline *cmdline, class cl_console *con)
+//int
+//cl_info_hw_cmd::do_work(class cl_sim *sim,
+//                     class cl_cmdline *cmdline, class cl_console *con)
+COMMAND_DO_WORK_UC(cl_info_hw_cmd)
 {
   class cl_hw *hw;
   class cl_cmd_arg *params[4]= { cmdline->param(0),
@@ -103,12 +106,12 @@ cl_info_hw_cmd::do_work(class cl_sim *sim,
                                 cmdline->param(2),
                                 cmdline->param(3) };
 
-  if (cmdline->syntax_match(sim, HW)) {
+  if (cmdline->syntax_match(uc, HW)) {
     hw= params[0]->value.hw;
     hw->print_info(con);
   }
   else
-    con->printf("%s\n", short_help?short_help:"Error: wrong syntax\n");
+    con->dd_printf("%s\n", short_help?short_help:"Error: wrong syntax\n");
 
   return(DD_FALSE);
 }