mirror of
https://github.com/geohot/qira
synced 2025-02-15 14:04:13 +03:00
8 lines
99 B
C
8 lines
99 B
C
#include <stdio.h>
|
|
|
|
int main() {
|
|
register long esp __asm__("esp");
|
|
printf("%8.8lx\n", esp);
|
|
}
|
|
|