IExecutable.cs 445 B

1234567891011121314151617181920
  1. namespace Ryujinx.HLE.Loaders.Executables
  2. {
  3. public interface IExecutable
  4. {
  5. string FilePath { get; }
  6. byte[] Text { get; }
  7. byte[] RO { get; }
  8. byte[] Data { get; }
  9. long SourceAddress { get; }
  10. long BssAddress { get; }
  11. int Mod0Offset { get; }
  12. int TextOffset { get; }
  13. int ROOffset { get; }
  14. int DataOffset { get; }
  15. int BssSize { get; }
  16. }
  17. }