ARM: Support unaligned memory access.

Without this flag set, page-crossing requests were not split into two mem
request.

Depending on the alignment bit in the SCTLR, misaligned access could
raise a fault. However it seems unnecessary to implement that.
This commit is contained in:
Min Kyu Jeong
2010-08-25 19:10:43 -05:00
parent b52fed4747
commit dee8f3d500

View File

@@ -113,7 +113,7 @@ namespace ArmISA
const uint32_t HighVecs = 0xFFFF0000;
// Memory accesses cannot be unaligned
const bool HasUnalignedMemAcc = false;
const bool HasUnalignedMemAcc = true;
enum InterruptTypes
{