Advertisement
Guest User

Untitled

a guest
Mar 31st, 2020
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. %macro printf 1-*           ;macro with undefined qty of params
  2.     %rep %0                 ;loop at all parameters
  3.         %rotate -1          ;%1 now is the last parameter
  4.         push %1             ;push last param into stack
  5.     %endrep
  6.     call handle
  7. %endmacro
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement