mirror of
https://github.com/GLEGram/GLEGram-iOS.git
synced 2026-06-02 12:31:50 +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.
32 lines
687 B
NASM
32 lines
687 B
NASM
[map all]
|
|
; Memory below 0800h is reserved for the BIOS and the MBR
|
|
BSS_START equ 0800h
|
|
|
|
; PXELINUX needs lots of BSS, so it relocates itself on startup
|
|
;%if IS_PXELINUX
|
|
TEXT_START equ 9000h
|
|
;%else
|
|
;TEXT_START equ 7C00h
|
|
;%endif
|
|
|
|
;
|
|
; The various sections and their relationship
|
|
;
|
|
org TEXT_START
|
|
|
|
times 0x100 db 0x3
|
|
|
|
section .earlybss nobits start=BSS_START
|
|
resb 0x100
|
|
section .bcopy32 align=16 follows=.data vfollows=.earlybss
|
|
times 0x100 db 0x1
|
|
section .bss nobits align=256 vfollows=.bcopy32
|
|
resb 0x100
|
|
|
|
section .text start=TEXT_START
|
|
section .data align=16 follows=.text
|
|
times 0x100 db 0x2
|
|
|
|
section .latebss nobits align=16 follows=.bcopy32
|
|
resb 0x100
|