mirror of
https://github.com/GLEGram/GLEGram-iOS.git
synced 2026-07-12 10:56:34 +02:00
4647310322
Based on Swiftgram 12.5 (Telegram iOS 12.5). All GLEGram features ported and organized in GLEGram/ folder. Features: Ghost Mode, Saved Deleted Messages, Content Protection Bypass, Font Replacement, Fake Profile, Chat Export, Plugin System, and more. See CHANGELOG_12.5.md for full details.
25 lines
369 B
NASM
25 lines
369 B
NASM
; Negatives
|
|
PROC_FRAME sample
|
|
[allocstack 0-8]
|
|
[setframe rbp, 0-4]
|
|
[savexmm128 xmm7, 0-16]
|
|
[savereg rsi, 0-8]
|
|
END_PROLOGUE
|
|
ENDPROC_FRAME
|
|
|
|
; Too positive
|
|
PROC_FRAME sample2
|
|
[setframe rbp, 248]
|
|
END_PROLOGUE
|
|
ENDPROC_FRAME
|
|
|
|
; Misaligned
|
|
PROC_FRAME sample3
|
|
[allocstack 128-4]
|
|
[setframe rbp, 240-4]
|
|
[savexmm128 xmm7, 1024+8]
|
|
[savereg rsi, 1024+4]
|
|
END_PROLOGUE
|
|
ENDPROC_FRAME
|
|
|