1.global _start
2.data
3.ascii "this is just a test"
4
5.text
6_start:
7.intel_syntax noprefix
8	pop rax; ret
9	pop rdx; ret
10	mov qword ptr [rax + 8], rdx; ret
11	int3; int3
12	pop rdi; ret
13	pop rdx; ret
14	pop rsi; ret
15	syscall
16