diff options
author | Ian Carmichael <iancarm@cygnus> | 1998-06-02 21:04:49 +0000 |
---|---|---|
committer | Ian Carmichael <iancarm@cygnus> | 1998-06-02 21:04:49 +0000 |
commit | 4979c0a27125f1fffb908a28c2c10aa1f20dd0b6 (patch) | |
tree | 6297df7a4ef7a57d465fa695daddb0436727af4c /sim/mips | |
parent | edc8f76e73316b8c23b29e7e75eb4aa486d65f46 (diff) | |
download | gdb-4979c0a27125f1fffb908a28c2c10aa1f20dd0b6.zip gdb-4979c0a27125f1fffb908a28c2c10aa1f20dd0b6.tar.gz gdb-4979c0a27125f1fffb908a28c2c10aa1f20dd0b6.tar.bz2 |
* Move the sanitize comments to the right place.
Diffstat (limited to 'sim/mips')
-rw-r--r-- | sim/mips/interp.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sim/mips/interp.c b/sim/mips/interp.c index 034d3e6..4738f7f 100644 --- a/sim/mips/interp.c +++ b/sim/mips/interp.c @@ -462,20 +462,20 @@ sim_open (kind, cb, abfd, argv) { /* Allocate core managed memory */ +/* start-sanitize-sky */ #ifndef TARGET_SKY +/* end-sanitize-sky */ /* the monitor */ sim_do_commandf (sd, "memory region 0x%lx,0x%lx", MONITOR_BASE, MONITOR_SIZE); /* For compatibility with the old code - under this (at level one) are the kernel spaces K0 & K1. Both of these map to a single smaller sub region */ sim_do_command(sd," memory region 0x7fff8000,0x8000") ; /* MTZ- 32 k stack */ - /* start-sanitize-sky */ - /* end-sanitize-sky */ sim_do_commandf (sd, "memory alias 0x%lx@1,0x%lx%%0x%lx,0x%0x", K1BASE, K0SIZE, MEM_SIZE, /* actual size */ K0BASE); - /* start-sanitize-sky */ +/* start-sanitize-sky */ #else /* the monitor */ sim_do_commandf (sd, "memory region 0x%lx,0x%lx", MONITOR_BASE - K1BASE, MONITOR_SIZE); @@ -484,7 +484,7 @@ sim_open (kind, cb, abfd, argv) address_translation() */ sim_do_commandf (sd, "memory size 0x%lx", MEM_SIZE); #endif - /* end-sanitize-sky */ +/* end-sanitize-sky */ device_init(sd); } |