Deleted Added
sdiff udiff text old ( 8147:ac8ef72e9700 ) new ( 8205:7ecbffb674aa )
full compact
1/*
2 * Copyright (c) 2010 ARM Limited
3 * All rights reserved
4 *
5 * The license below extends only to copyright in the software and shall
6 * not be construed as granting a license to any other intellectual
7 * property including but not limited to intellectual property relating
8 * to a hardware implementation of the functionality of the software

--- 252 unchanged lines hidden (view full) ---

261 pc.nextJazelle(cpsr.j);
262 tc->pcState(pc);
263 } else if (misc_reg >= MISCREG_CP15_UNIMP_START &&
264 misc_reg < MISCREG_CP15_END) {
265 panic("Unimplemented CP15 register %s wrote with %#x.\n",
266 miscRegName[misc_reg], val);
267 } else {
268 switch (misc_reg) {
269 case MISCREG_CPACR:
270 {
271 CPACR newCpacr = 0;
272 CPACR valCpacr = val;
273 newCpacr.cp10 = valCpacr.cp10;
274 newCpacr.cp11 = valCpacr.cp11;
275 //XXX d32dis isn't implemented. The manual says whether or not
276 //it works is implementation defined.

--- 203 unchanged lines hidden ---