mirror of
https://github.com/cirosantilli/linux-kernel-module-cheat.git
synced 2026-01-23 02:05:57 +01:00
12 lines
209 B
C
12 lines
209 B
C
/* https://cirosantilli.com/linux-kernel-module-cheat#dump-regs */
|
|
|
|
#include <stdio.h>
|
|
#include <inttypes.h>
|
|
|
|
#include <lkmc/aarch64_dump_regs.h>
|
|
|
|
int main(void) {
|
|
lkmc_dump_system_regs();
|
|
return 0;
|
|
}
|