Revert accidentally committed changes that aren't ready yet.

This commit is contained in:
Kevin Buettner 2010-05-28 17:21:40 +00:00
parent 12cb73884e
commit c91e8ecef5

View file

@ -36,7 +36,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. */
#include "load.h" #include "load.h"
#include "syscalls.h" #include "syscalls.h"
#include "err.h" #include "err.h"
#include "trace.h"
/* Ideally, we'd wrap up all the minisim's data structures in an /* Ideally, we'd wrap up all the minisim's data structures in an
object and pass that around. However, neither GDB nor run needs object and pass that around. However, neither GDB nor run needs
@ -404,9 +403,6 @@ reg_size (enum sim_rx_regnum regno)
case sim_rx_fpsw_regnum: case sim_rx_fpsw_regnum:
size = sizeof (regs.r_fpsw); size = sizeof (regs.r_fpsw);
break; break;
case sim_rx_acc_regnum:
size = sizeof (regs.r_acc);
break;
default: default:
size = 0; size = 0;
break; break;
@ -507,9 +503,6 @@ sim_fetch_register (SIM_DESC sd, int regno, unsigned char *buf, int length)
case sim_rx_fpsw_regnum: case sim_rx_fpsw_regnum:
val = get_reg (fpsw); val = get_reg (fpsw);
break; break;
case sim_rx_acc_regnum:
val = ((DI) get_reg (acchi) << 32) | get_reg (acclo);
break;
default: default:
fprintf (stderr, "rx minisim: unrecognized register number: %d\n", fprintf (stderr, "rx minisim: unrecognized register number: %d\n",
regno); regno);