Archived
1
0
This repository has been archived on 2025-01-28. You can view files and clone it, but cannot push or open issues or pull requests.
asm_libs/include/macros.inc
2022-12-02 15:04:49 +03:00

9 lines
136 B
PHP

macro prelude {
push ebp
mov ebp, esp
push eax ebx ecx edx esi edi
}
macro postlude {
pop edi esi edx ecx ebx eax ebp
}