mirror of
https://github.com/darlinghq/darling-gdb.git
synced 2024-12-15 00:00:20 +00:00
Revert accidentally committed changes that aren't ready yet.
This commit is contained in:
parent
12cb73884e
commit
c91e8ecef5
@ -36,7 +36,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. */
|
||||
#include "load.h"
|
||||
#include "syscalls.h"
|
||||
#include "err.h"
|
||||
#include "trace.h"
|
||||
|
||||
/* Ideally, we'd wrap up all the minisim's data structures in an
|
||||
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:
|
||||
size = sizeof (regs.r_fpsw);
|
||||
break;
|
||||
case sim_rx_acc_regnum:
|
||||
size = sizeof (regs.r_acc);
|
||||
break;
|
||||
default:
|
||||
size = 0;
|
||||
break;
|
||||
@ -507,9 +503,6 @@ sim_fetch_register (SIM_DESC sd, int regno, unsigned char *buf, int length)
|
||||
case sim_rx_fpsw_regnum:
|
||||
val = get_reg (fpsw);
|
||||
break;
|
||||
case sim_rx_acc_regnum:
|
||||
val = ((DI) get_reg (acchi) << 32) | get_reg (acclo);
|
||||
break;
|
||||
default:
|
||||
fprintf (stderr, "rx minisim: unrecognized register number: %d\n",
|
||||
regno);
|
||||
|
Loading…
Reference in New Issue
Block a user