|
Message
From: cvs at opencores.org<cvs@o...>
Date: Thu Oct 20 01:10:57 CEST 2005
Subject: [cvs-checkins] MODIFIED: or1k ...
Date: 00/05/10 20:01:10 Modified: or1k/or1ksim sim-cmd.c Log: usability improvments Revision Changes Path 1.21 or1k/or1ksim/sim-cmd.c http://www.opencores.org/cvsweb.shtml/or1k/or1ksim/sim-cmd.c.diff?r1=1.20&r2=1.21 (In the diff below, changes in quantity of whitespace are not shown.) Index: sim-cmd.c =================================================================== RCS file: /cvsroot/phoenix/or1k/or1ksim/sim-cmd.c,v retrieving revision 1.20 retrieving revision 1.21 diff -u -b -r1.20 -r1.21 --- sim-cmd.c 11 Oct 2005 06:21:25 -0000 1.20 +++ sim-cmd.c 19 Oct 2005 23:10:57 -0000 1.21 @@ -379,7 +379,7 @@ PRINTF("Simulation history disabled.\n"); return 0; } - for(i = HISTEXEC_LEN, cur = hist_exec_tail->prev; i; i--, cur = cur->prev) + for(i = HISTEXEC_LEN, cur = hist_exec_tail->next; i; i--, cur = cur->next) dumpmemory(cur->addr, cur->addr + 4, 1, 1); PRINTF("\n"); return 0;
|
 |