http://lambda2kdjjd56rg7bca7lcovar25jc7fmswxa2e3b5ymmggctmkv3id.onion/All/index164
Sorry P11910 Mon 2022-09-19 07:06:49 link reply P11856 Maybe windows was the comfy OS after all. P11946 Mon 2022-09-19 18:02:27 link reply On linux (other unixes too, most likely) that would be (without stdlib): .globl _start .text _start: movl $1, %eax # sys_write call movl $1, %edi # standard output movl $message, %esi movl $len, %edx syscall movl $60, %eax # sys_exit call movl $0, %edi syscall .data message: .ascii "Hello World\n" len = . - message Notice how it...