diff options
author | Nicolas "Pixel" Noble <pixel@nobis-crew.org> | 2009-09-21 03:37:45 +0200 |
---|---|---|
committer | Nicolas "Pixel" Noble <pixel@nobis-crew.org> | 2009-09-21 03:37:45 +0200 |
commit | 14d90c9e1171655b864316c9c4aa34033fdd3a45 (patch) | |
tree | 3c297e80f774b4a6452331ff840fe6c415875e11 /Database/internals/database-internal.h | |
parent | 8c9c24358cca81cdb15462cb74afc5f173966c79 (diff) |
Very first bit towards a Mips/PSX disassembler
Diffstat (limited to 'Database/internals/database-internal.h')
-rw-r--r-- | Database/internals/database-internal.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Database/internals/database-internal.h b/Database/internals/database-internal.h index 173eb62..4616d8c 100644 --- a/Database/internals/database-internal.h +++ b/Database/internals/database-internal.h @@ -17,9 +17,9 @@ class DatabaseCell : public Base { public: /** The constructor of a DatabaseCell. Note that if you specify the origin parameter, * it'll create a sub-segment based on the first one. Note also that this doesn't support - * the patching system, yet. + * the patching system, yet. data and origin are mutually exclusive. */ - DatabaseCell(Cpu * cpu, Uint64 cpu_base, absolute_ptr origin, Uint32 size, Uint32 extra_size, DatabaseCell * prev, Database * parent); + DatabaseCell(Database * parent, Cpu * cpu, Uint64 cpu_base, absolute_ptr origin, Uint32 size, Uint32 extra_size = 0, const Byte * data = 0); ~DatabaseCell(); Uint32 getId() { return segment->getId(); } void LoadMemory(Handle * src) { segment->LoadMemory(src); } |