Is it possible to pad a certain amount of times depending on the current location counter?
In NASM you can do something like this
times value - ($ $$) db 0
Is there a coresponding way of doing this using the gas syntax? (The ammount of bytes i wish to pad is unknown, only the max number is known)