Skip to content

Commit

Permalink
Merged yaAGC 20090415 into the virtualagc/yaAGC SVN tree. Still need …
Browse files Browse the repository at this point in the history
…to merge yaAGS changes
  • Loading branch information
ohommes committed Apr 17, 2009
1 parent 6c45340 commit 33adaa1
Show file tree
Hide file tree
Showing 23 changed files with 6,644 additions and 6,266 deletions.
6 changes: 3 additions & 3 deletions yaAGC/Backtrace.c
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ SymbolLine_t* FindLastLineMain ( void )
// the vector to the interrupt are removed. The reason for this is that
// otherwise the array will quickly become completely full of interrupt
// code, and all backtrace points to foreground code will be completely lost.
void BacktraceAdd ( agc_t *State, int Cause, unsigned NextZ )
void BacktraceAdd ( agc_t *State, int Cause )
{
BacktracePoint_t *Bp;
if ( SingleStepCounter == -2 || BacktraceInitialized == -1 ) return;
Expand Down Expand Up @@ -198,8 +198,8 @@ void BacktraceAdd ( agc_t *State, int Cause, unsigned NextZ )
Bp->SubstituteInstruction = State->SubstituteInstruction;
Bp->DueToInterrupt = Cause;

if (NextZ < 5) Bp->TargetZ = Bp->Erasable[0][NextZ];
else Bp->TargetZ = NextZ;
// if (NextZ < 5) Bp->TargetZ = Bp->Erasable[0][NextZ];
// else Bp->TargetZ = NextZ;

// printf("\n*** %d ***\n",Bp->TargetZ);

Expand Down
Loading

0 comments on commit 33adaa1

Please sign in to comment.