diff options
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"); |