Re: A89: Starting out assembly, need help


[Prev][Next][Index][Thread]

Re: A89: Starting out assembly, need help




In a message dated 12/2/98 7:54:03 PM Pacific Standard Time,
nlmueller@students.wisc.edu writes:

<< Since you are writing the macros you get to decide.  You can pass them on
 the stack, or by registers.
 
 	--Nate >>

Actually, I just found out that macros have their own way.  Say you had a
macro called WriteString that took three parameters.  You would use it like
this.

WriteString 30,50,"Hello"

Then the macro would use \1 for the number 30, \2 for the number 50, and \3
for the string "Hello".

Daniel Imfeld