From 98d573d1c6b6ede2fc030d6569934bccfcd33198 Mon Sep 17 00:00:00 2001 From: Katy Coe Date: Tue, 22 Oct 2019 21:09:09 +0200 Subject: [PATCH] Add ARM64 stub --- Il2CppInspector/Il2CppBinaryARM64.cs | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 Il2CppInspector/Il2CppBinaryARM64.cs diff --git a/Il2CppInspector/Il2CppBinaryARM64.cs b/Il2CppInspector/Il2CppBinaryARM64.cs new file mode 100644 index 0000000..06e2ecb --- /dev/null +++ b/Il2CppInspector/Il2CppBinaryARM64.cs @@ -0,0 +1,23 @@ +using System; +using System.Collections.Generic; +using System.Text; + +namespace Il2CppInspector +{ + internal class Il2CppBinaryARM64 : Il2CppBinary + { + public Il2CppBinaryARM64(IFileFormatReader stream) : base(stream) { } + + public Il2CppBinaryARM64(IFileFormatReader stream, uint codeRegistration, uint metadataRegistration) : base(stream, codeRegistration, metadataRegistration) { } + + protected override (ulong, ulong) ConsiderCode(IFileFormatReader image, uint loc) { + // Assembly bytes to search for at start of each function + ulong metadataRegistration, codeRegistration; + byte[] buff; + + + + return (0, 0); + } + } +} \ No newline at end of file