mirror of
https://github.com/GLEGram/GLEGram-iOS.git
synced 2026-07-12 15:06:35 +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.
35 lines
616 B
NASM
35 lines
616 B
NASM
; AX forms
|
|
add ax,5
|
|
add ax,strict byte 5
|
|
add ax,strict word 5
|
|
add ax,-128
|
|
add ax,strict byte -128
|
|
add ax,strict word -128
|
|
add ax,0x7f
|
|
add ax,strict byte 0x7f
|
|
add ax,strict word 0x7f
|
|
add ax,0x80
|
|
add ax,strict byte 0x80
|
|
add ax,strict word 0x80
|
|
add ax,0x100
|
|
add ax,strict byte 0x100
|
|
add ax,strict word 0x100
|
|
|
|
; non-AX forms
|
|
add bx,5
|
|
add bx,strict byte 5
|
|
add bx,strict word 5
|
|
add bx,-128
|
|
add bx,strict byte -128
|
|
add bx,strict word -128
|
|
add bx,0x7f
|
|
add bx,strict byte 0x7f
|
|
add bx,strict word 0x7f
|
|
add bx,0x80
|
|
add bx,strict byte 0x80
|
|
add bx,strict word 0x80
|
|
add bx,0x100
|
|
add bx,strict byte 0x100
|
|
add bx,strict word 0x100
|
|
|