section .data
heading1 db "=== Tashan Win Invite Code Blog ===", 0Ah, 0
heading2 db "## What is Tashan Win Invite Code?", 0Ah, 0
para1 db "By using the Tashan Win Invite Code 553662708975 during registration, new players can unlock exclusive bonuses and referral benefits.", 0Ah, 0
heading3 db "## How to Use the Invite Code?", 0Ah, 0
para2 db "The Tashan Win login process is quick and user-friendly. Simply visit the registration page, enter your details, and apply the invite code to claim your rewards instantly.", 0Ah, 0
heading4 db "## Why Choose Tashan Win?", 0Ah, 0
para3 db "Tashan Win offers secure transactions, instant withdrawals, and a smooth gaming experience. Whether for fun or earning opportunities, it ensures a safe and engaging platform for players.", 0Ah, 0
section .text
global _start
_start:
; Print heading 1
mov rsi, heading1
call print_string
; Print heading 2
mov rsi, heading2
call print_string
; Print paragraph 1
mov rsi, para1
call print_string
; Print heading 3
mov rsi, heading3
call print_string
; Print paragraph 2
mov rsi, para2
call print_string
; Print heading 4
mov rsi, heading4
call print_string
; Print paragraph 3
mov rsi, para3
call print_string
; Exit program
mov rax, 60
xor rdi, rdi
syscall
; =========================
; print_string function
; =========================
print_string:
mov rax, 0 ; find string length
mov rbx, rsi
.len_loop:
cmp byte [rbx], 0
je .len_found
inc rbx
jmp .len_loop
.len_found:
mov rdx, rbx
sub rdx, rsi ; string length
mov rax, 1 ; sys_write
mov rdi, 1
syscall
ret