diff options
author | Stephane Carrez <stcarrez@nerim.fr> | 2000-08-11 18:44:59 +0000 |
---|---|---|
committer | Stephane Carrez <stcarrez@nerim.fr> | 2000-08-11 18:44:59 +0000 |
commit | 63348d048f2d0bdaa82071e72708c7345ba2a3bf (patch) | |
tree | 5685aee1a9fafe24cfae4efa3e730b05c901243f /sim/m68hc11/dv-nvram.c | |
parent | 351aa9f6577b96f8e044432d2f04d2f6521c4873 (diff) | |
download | gdb-63348d048f2d0bdaa82071e72708c7345ba2a3bf.zip gdb-63348d048f2d0bdaa82071e72708c7345ba2a3bf.tar.gz gdb-63348d048f2d0bdaa82071e72708c7345ba2a3bf.tar.bz2 |
Use address mapping levels for 68hc11 simulator (kill overlap hack)
Diffstat (limited to 'sim/m68hc11/dv-nvram.c')
-rw-r--r-- | sim/m68hc11/dv-nvram.c | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/sim/m68hc11/dv-nvram.c b/sim/m68hc11/dv-nvram.c index 6ffea5d..39bd6f2 100644 --- a/sim/m68hc11/dv-nvram.c +++ b/sim/m68hc11/dv-nvram.c @@ -44,11 +44,6 @@ PROPERTIES - overlap? <bool> - - Boolean property which indicates whether the device can overlap - another device. By default, overlapping is not allowed. - reg <base> <length> Base and size of the non-volatile ram bank. @@ -135,11 +130,6 @@ attach_nvram_regs (struct hw *me, struct nvram *controller) reg_property_spec reg; int result, oerrno; - /* Get the flag that controls overlapping of ram bank to another device. */ - if (hw_find_property (me, "overlap?") != NULL - && hw_find_boolean_property (me, "overlap?")) - me->overlap_mode_hw = 1; - /* Get ram bank description (base and size). */ if (hw_find_property (me, "reg") == NULL) hw_abort (me, "Missing \"reg\" property"); |