| 297 | protected: |
| 298 | |
| 299 | typedef struct PatchEntry |
| 300 | { |
| 301 | U32 addr; ///< Address to patch |
| 302 | U32 value; ///< Value to place at addr |
| 303 | |
| 304 | PatchEntry() {;} |
| 305 | PatchEntry(U32 a, U32 v) : addr(a), value(v) {;} |
| 306 | } PatchEntry; |
| 307 | |
| 308 | typedef struct CodeData |
| 309 | { |