Mother2GbaTranslation/tools/ScriptTool/IDecompiler.cs

16 lines
417 B
C#
Raw Normal View History

2015-03-15 00:10:01 +00:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ScriptTool
{
interface IDecompiler
{
2015-03-16 04:16:12 +00:00
void ScanRange(byte[] rom, int startAddress, int endAddress);
string DecompileRange(byte[] rom, int startAddress, int endAddress, bool newLines);
string DecompileString(byte[] rom, int address, bool newLines);
2015-03-15 00:10:01 +00:00
}
}