OpenCores
URL https://opencores.org/ocsvn/or1k_old/or1k_old/trunk

Subversion Repositories or1k_old

Compare Revisions

  • This comparison shows the changes necessary to convert path
    /
    from Rev 1478 to Rev 1479
    Reverse comparison

Rev 1478 → Rev 1479

/trunk/or1ksim/sim-cmd.c
328,6 → 328,10
 
static int sim_cmd_break(int argc, char **argv) /* set/clear breakpoint */
{
#if DYNAMIC_EXECUTION
PRINTF("Setting simulator breakpoints is not support with the recompiler\n");
return 0;
#else
char *p;
oraddr_t addr;
struct label_entry *l;
347,6 → 351,7
}
set_insnbrkpoint(addr);
return 0;
#endif
}
 
static int sim_cmd_r(int argc, char **argv) /* dump regs */
453,10 → 458,15
 
static int sim_cmd_stall(int argc, char **argv) /* Added by CZ 210801 */
{
#if DYNAMIC_EXECUTION
PRINTF("Can't stall the cpu with the dynamic recompiler\n");
return 0;
#else
set_stall_state (1);
runtime.sim.iprompt = 0;
runtime.sim.hush = 1;
return 1;
#endif
}
 
static int sim_cmd_stats(int argc, char **argv) /* stats */

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.