Untitled
Anonymous
plain_text
08/28/2024 6:11 AM
352 B
15
Indexable
#include <stdint.h>
#include <stdio.h>
#include<inttypes.h>
int main() {
uint64_t cr3_value;
// Load CR3 into a variable
asm volatile("movq %%cr3, %0" : "=r" (cr3_value));
printf("The large number is: %"PRIu64"\n",cr3_value);
return 0;
}
Editor is loading...
Leave a Comment