BTW, I'd like the idea of PREFIX statement in PB10, but in my opinion, for inline assembler would be better to use ASM/END ASM blocks --
this looks irregular.
FASTPROC xx: PREFIX "! "
push ebp
mov esp, ebp
...
END PREFIX: END FASTPROC
But this syntax is looking elegant and similar to other languages with inline asm
FASTPROC xx
ASM
push ebp
mov esp, ebp
END ASM
END FASTPROC
What do you think?