Files
linux-kernel-module-cheat/userland/arch/main.c
Ciro Santilli 六四事件 法轮功 0263c21557 userland: add assembly support
Move arm assembly cheat here, and start some work on x86 cheat as well.
2019-05-05 00:00:00 +00:00

18 lines
305 B
C

/* This is the main entrypoint for all .S examples. */
#include "stdio.h"
#include "stdint.h"
#include "lkmc.h"
int asm_main(uint32_t *line);
int main(void) {
uint32_t ret, line;
ret = asm_main(&line);
if (ret) {
printf("error %d at line %d\n", ret, line);
}
return ret;
}