sim: always enable modulo memory

Having this be a config option doesn't make sense: the code size is
pretty much the same (as all the logic is still active), and if it's
disabled, the sim throws an error if you try to use it.  That means
we can't break sims that weren't using it before by enabling it all
the time.
This commit is contained in:
Mike Frysinger
2015-11-17 00:19:56 -08:00
parent 8fd3fe9331
commit cdf850e9d9
12 changed files with 30 additions and 36 deletions

View File

@@ -119,10 +119,9 @@ extern SIM_RC sim_core_install (SIM_DESC sd);
translated into ADDRESS_SPACE:OFFSET before being passed to the
client device.
MODULO - when the simulator has been configured WITH_MODULO support
and is greater than zero, specifies that accesses to the region
[ADDR .. ADDR+NR_BYTES) should be mapped onto the sub region [ADDR
.. ADDR+MODULO). The modulo value must be a power of two.
MODULO - Specifies that accesses to the region [ADDR .. ADDR+NR_BYTES)
should be mapped onto the sub region [ADDR .. ADDR+MODULO). The modulo
value must be a power of two.
DEVICE - When non NULL, indicates that this is a callback memory
space and specified device's memory callback handler should be