Browse Source

check if mmu is enabled before using mmu code path

tags/v0.3.0-rc0
Øyvind Harboe 14 years ago
parent
commit
d785f552ee
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/target/arm926ejs.c

+ 1
- 1
src/target/arm926ejs.c View File

@@ -713,7 +713,7 @@ int arm926ejs_write_memory(struct target_s *target, uint32_t address, uint32_t s
/* FIX!!!! this should be cleaned up and made much more general. The
* plan is to write up and test on arm926ejs specifically and
* then generalize and clean up afterwards. */
if ((count == 1) && ((size==2) || (size==4)))
if (arm926ejs->armv4_5_mmu.mmu_enabled && (count == 1) && ((size==2) || (size==4)))
{
/* special case the handling of single word writes to bypass MMU
* to allow implementation of breakpoints in memory marked read only


Loading…
Cancel
Save