mirror of
https://github.com/OpenTTD/OpenTTD.git
synced 2025-07-10 14:24:02 +01:00
9 lines
72 B
NASM
9 lines
72 B
NASM
.CODE
|
|
|
|
PUBLIC _get_save_esp
|
|
_get_save_esp:
|
|
MOV RAX,RSP
|
|
RET
|
|
|
|
END
|