[WISH] ProcedureASM

Got an idea for enhancing PureBasic? New command(s) you'd like to see?
User avatar
Mijikai
Addict
Addict
Posts: 1360
Joined: Sun Sep 11, 2016 2:17 pm

[WISH] ProcedureASM

Post by Mijikai »

I really would love it to see a ProcedureASM that allows for inline-assembly
procedures with no overhead and full control.

Code: Select all

ProcedureASM GetFirstParameter(Input)
 !mov rax,rcx
 !ret
EndProcedureASM
So i dont need to write the procedure in fasm and import it as *.obj / *.lib:

Code: Select all

GetFirstParameter:
  mov rax,rcx
  ret