this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

[mldr] Store ARM64 "pc" Into entryPoint

+3
+3
src/startup/mldr/loader.c
··· 254 254 #elif defined(__i386__) 255 255 // Grab eip from i386_thread_state 256 256 entryPoint = ((uint32_t*) lc)[14]; 257 + #elif defined(__aarch64__) 258 + // Grab pc from arm_thread_state64 259 + entryPoint = ((uint64_t*) lc)[34]; 257 260 #else 258 261 #error "Missing entryPoint assignment from thread state" 259 262 #endif