aboutsummaryrefslogtreecommitdiff
path: root/ARMeilleure/Translation/ITranslator.cs
blob: 1063d3a658e018ed55e050eb08dc4ba5b78450e8 (plain) (blame)
1
2
3
4
5
6
7
8
9
using ARMeilleure.State;

namespace ARMeilleure.Translation
{
    public interface ITranslator
    {
        void Execute(IExecutionContext context, ulong address);
    }
}