# true.s # should be a replacement for /bin/true ... ;-) # #include .file "true.s" .text .globl true true: mov $0,%rdi mov $__NR_exit,%rax syscall