I have some old security code in asm to bring up to 64bit. I realize the compiler no longer accepts embedded asm, and rejects trying to inline it.
But I need to insert about 60 bytes as a place marker at the front and end of a particular function. In asm its done with db 1,2,3,4,5,6,7,8. How can I do that now in pascal? i.e. insert some superfluous bytes into the function code at beginning and end?
Thanks.