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 430 to Rev 431
    Reverse comparison

Rev 430 → Rev 431

/trunk/or1ksim/cpu/or32/execute.c
57,6 → 57,9
int nop_period = 0;
int nop_maxperiod = 0;
 
/* Whether break was hit - so we can step over a break */
static int break_just_hit = 0;
 
/* freemem 'pointer' */
extern unsigned long freemem;
 
396,8 → 399,11
because of peripheria.
MM1709: if we cannot access the memory entry, we could not set the
breakpoint earlier, so just chech the breakpoint list. */
if(has_breakpoint (pc_phy))
if(has_breakpoint (pc_phy) && !break_just_hit) {
break_just_hit = 1;
return 1; /* Breakpoint set. */
}
break_just_hit = 0;
 
/* Cycles after reset. */
cycles++;

powered by: WebSVN 2.1.0

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