section .data
otsu_msg db '復旧作業お疲れ様です',0
section .text
global _start
_start:
mov eax, 4
mov ebx, 1
mov ecx, otsu_msg
mov edx, 30
int 0x80
mov eax, 1
xor ebx, ebx
int 0x80