updated disassembly program to support a custom stop address

hg-commit-id: a2bee0bdb345
This commit is contained in:
KuroiIeWa5Da 2012-01-23 03:59:25 -06:00
parent 7b5159fb06
commit a297c105b5
3 changed files with 53 additions and 5 deletions

View file

@ -37,6 +37,9 @@ public:
std::string GetFilename();
void SetFilename(std::string value);
unsigned int GetStopAddress();
void SetStopAddress(unsigned int value);
std::string GetParsedAsm();
// File Operations
@ -56,6 +59,9 @@ private:
unsigned int filePos;
bool stop;
// Optional Settings
unsigned int stopAddress;
// A lot of tmp classes
Call tmpCall;
Duty tmpDuty;