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

9 lines
136 B
PHP
Raw Permalink Normal View History

2022-11-06 13:51:51 +03:00
macro prelude {
push ebp
mov ebp, esp
push eax ebx ecx edx esi edi
}
macro postlude {
pop edi esi edx ecx ebx eax ebp
}