Coming soon ...

1
2section .data
3 message db "Stripe Driven Development", 0
4
5section .text
6 global _start
7
8_start:
9 ; Write syscall
10 mov eax, 4
11 mov ebx, 1
12 mov ecx, message
13 mov edx, 25
14 int 0x80
15
16 ; Exit syscall
17 mov eax, 1
18 xor ebx, ebx
19 int 0x80
20