Deleted Added
sdiff udiff text old ( 13393:659fdbcd5722 ) new ( 13395:0f064dae9f6b )
full compact
1/*
2 * Copyright (c) 2010, 2012-2018 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

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

224 privSecureWrite(v);
225 return *this;
226 }
227 chain priv(bool v = true) const {
228 privSecure(v);
229 privNonSecure(v);
230 return *this;
231 }
232 chain hypRead(bool v = true) const {
233 info[MISCREG_HYP_RD] = v;
234 return *this;
235 }
236 chain hypWrite(bool v = true) const {
237 info[MISCREG_HYP_WR] = v;
238 return *this;
239 }

--- 464 unchanged lines hidden ---