Deleted Added
sdiff udiff text old ( 7206:00494ff7ca71 ) new ( 7245:bee7e6b76d38 )
full compact
1// -*- mode:c++ -*-
2
3// Copyright (c) 2010 ARM Limited
4// All rights reserved
5//
6// The license below extends only to copyright in the software and shall
7// not be construed as granting a license to any other intellectual
8// property including but not limited to intellectual property relating

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

230 return new WarnUnimplemented("ldrex", machInst);
231 default:
232 return new Unknown(machInst);
233 }
234 }
235 '''
236}};
237
238def format Thumb32LoadWord() {{
239 decode = '''
240 {
241 uint32_t op1 = bits(machInst, 24, 23);
242 if (bits(op1, 1) == 0) {
243 uint32_t op2 = bits(machInst, 11, 6);
244 if (HTRN == 0xF) {
245 if (UP) {

--- 249 unchanged lines hidden ---