Deleted Added
sdiff udiff text old ( 10595:25ecfc14f73f ) new ( 10601:6efb37480d87 )
full compact
1/*
2 * Copyright 2014 Google, Inc.
3 * Copyright (c) 2007 The Regents of The University of Michigan
4 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions are
8 * met: redistributions of source code must retain the above copyright

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

49 const int GdbFloatSpecialRegs = 2;
50
51 const int GdbIntRegs = GdbIntArchRegs + GdbIntSpecialRegs;
52 const int GdbFloatRegs = GdbFloatArchRegs + GdbFloatSpecialRegs;
53 const int GdbNumRegs = GdbIntRegs + GdbFloatRegs;
54
55 class RemoteGDB : public BaseRemoteGDB
56 {
57 public:
58 RemoteGDB(System *_system, ThreadContext *tc);
59
60 protected:
61 bool acc(Addr addr, size_t len);
62
63 void getregs();
64 void setregs();
65 };
66}
67
68#endif /* __ARCH_MIPS_REMOTE_GDB_H__ */