I want to do this:
BITS 64
segment .text
global _start
_start:
push 11
init_bss_with_11_bytes_from_the_stack
mov rax, 60
mov rdi, 0
syscall
segment .bss
hello: ????
Is there a way to do this? I can't find anything on this, should I just overallocate memory and then use it? and what if it overflows?
I'm sorry how this question is not that verbose, but this question's title talks for itself, nothing else to add