mirror of
https://github.com/geohot/qira
synced 2025-02-19 07:54:15 +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);
|
||
|
}
|
||
|
|