Squares Macro on Assembly

Just simple way to create a macro for squares operation :
Squares MACRO a
            MOV AX,a
            MUL a
            endm

and the result is saving at AX register
Previous
Next Post »