Updated program to support the -fo option - forces continuation of parsing past mus_end

hg-commit-id: 595e13f32986
This commit is contained in:
KuroiIeWa5Da 2012-01-28 08:16:42 -06:00
parent 436c486d95
commit 1e6b99faa2
3 changed files with 44 additions and 2 deletions

View file

@ -41,6 +41,9 @@ public:
unsigned int GetStopAddress();
void SetStopAddress(unsigned int value);
bool GetForce();
void SetForce(bool value);
std::string GetParsedAsm();
// File Operations
@ -81,6 +84,7 @@ private:
unsigned int fileLength;
unsigned int filePos;
bool stop;
bool force;
// Optional Settings
unsigned int stopAddress;