Deleted Added
sdiff udiff text old ( 10030:b531e328342d ) new ( 10031:79d034cd6ba3 )
full compact
1/*
2 * Copyright (c) 2012-2013 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

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

394 }
395}
396
397
398Fault
399AtomicSimpleCPU::writeMem(uint8_t *data, unsigned size,
400 Addr addr, unsigned flags, uint64_t *res)
401{
402 // use the CPU's statically allocated write request and packet objects
403 Request *req = &data_write_req;
404
405 if (traceData) {
406 traceData->setAddr(addr);
407 }
408
409 //The size of the data we're trying to read.

--- 291 unchanged lines hidden ---