Deleted Added
sdiff udiff text old ( 6029:007c36616f47 ) new ( 6180:1a8950d566ff )
full compact
1/*
2 * Copyright (c) 2004-2006 The Regents of The University of Michigan
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are
7 * met: redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer;

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

260
261 virtual uint64_t readNextNPC()
262 {
263 return this->cpu->readNextNPC(this->thread->threadId());
264 }
265
266 virtual void setNextNPC(uint64_t val)
267 {
268 this->cpu->setNextNPC(val, this->thread->threadId());
269 }
270};
271
272#endif