mirror of
https://github.com/GLEGram/GLEGram-iOS.git
synced 2026-07-19 06:27:23 +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.
21 lines
270 B
NASM
Executable File
21 lines
270 B
NASM
Executable File
bits 64
|
|
org 0x100
|
|
foo_equ equ 0x12345678
|
|
|
|
section .text
|
|
nop
|
|
foo_text:
|
|
nop
|
|
mov rax,[foo_equ wrt rip]
|
|
mov rax,[foo_text wrt rip]
|
|
mov rax,[foo_data wrt rip]
|
|
mov rbx,[foo_equ wrt rip]
|
|
mov rbx,[foo_text wrt rip]
|
|
mov rbx,[foo_data wrt rip]
|
|
|
|
section .data
|
|
db 0
|
|
foo_data:
|
|
db 0
|
|
|