Page 1 of 1

[WISH] ProcedureASM

Posted: Thu Nov 01, 2018 2:14 pm
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