short sample:
-----
	macro MyMacro arg
		call arg_f
	endm

	MyMacro test
-----
will be expanded to:
-----
	call test_f
-----
