-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Minor refactoring in Call and Goto classes
- Loading branch information
1 parent
0e3d507
commit def9130
Showing
2 changed files
with
4 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,9 @@ | ||
using System; | ||
|
||
namespace PICHexDisassembler.Instructions | ||
namespace PICHexDisassembler.Instructions | ||
{ | ||
public class Call : Instruction | ||
public class Call : Goto | ||
{ | ||
private string address; | ||
|
||
public Call(string data) : base(data) | ||
{ | ||
address = data.Substring(3); | ||
} | ||
|
||
public override string ToString() | ||
{ | ||
return "CALL 0x" + Convert.ToInt32(address, 2).ToString("X2"); | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters