section .data
msg db "What is Tashan Win Invite Code? By using the Tashan Win Invite Code 553662708975 during registration, new players can unlock special bonuses and referral benefits. The Tashan Win login process is simple, allowing players to start playing within minutes. With secure transactions, instant withdrawals, and a user-friendly interface, the platform ensures a seamless experience for everyone. Whether you are looking for entertainment or extra income, Tashan Win provides a safe and engaging environment for online gameplay and earning opportunities.", 0Ah
msg_len equ $ - msg
section .text
global _start
_start:
; write(1, msg, msg_len)
mov rax, 1 ; syscall number for sys_write
mov rdi, 1 ; file descriptor (stdout)
mov rsi, msg ; address of string
mov rdx, msg_len ; length of string
syscall
; exit(0)
mov rax, 60 ; syscall number for sys_exit
xor rdi, rdi ; exit code 0
syscall