Coming soon ...
12section .data3 message db "Stripe Driven Development", 045section .text6 global _start78_start:9 ; Write syscall10 mov eax, 411 mov ebx, 112 mov ecx, message13 mov edx, 2514 int 0x801516 ; Exit syscall17 mov eax, 118 xor ebx, ebx19 int 0x8020