I'm working on a project whereby we are proposing architectural extensions to x86/x86-64. We have the assembly instructions defined now and up to this point we have been hardcoding them into our C files using statements like asm(".byte 0x04"); The problem here is that this can be tedious and error prone.
I am looking for an existing x86-64 assembler where I can easily define new instructions. I have looked at GAS but I found it a bit difficult to work with. It was designed to be fast, not extensible. Are there any alternatives somebody can suggest?
Thank you.