Gaming should be art, not a privilege!

		
			section .data
    msg db "Welcome to BSB", 0xA
    len equ $ - msg

section .text
    global _start

_start:
    mov eax, 4
    mov ebx, 1
    mov ecx, msg
    mov edx, len
    int 0x80

    mov eax, 1
    xor ebx, ebx
    int 0x80

		
	

This user hasn't posted anything yet.