Deleted Added
sdiff udiff text old ( 7154:1fa6d1db1f32 ) new ( 7155:4c96244f0b8a )
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

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

100}};
101
102def format Thumb16UncondBranch() {{
103 decode_block = '''
104 return new B(machInst, sext<12>(bits(machInst, 10, 0) << 1), COND_UC);
105 '''
106}};
107
108def format Thumb32 BranchesAndMiscCtrl() {{
109 decode_block = '''
110 return new WarnUnimplemented("Branches_and_miscellaneous_control",
111 machInst);
112 '''
113}};