Assembly ideas / Macros


Macros are code snippets which you write only once, but use more times.

A Macro (eg.: @PutAChar 19,12,'@') has got:
  1. a name: PutAChar
    • [PutAChar: declaring
    • @PutAChar: calling
  2. parameters: 19, 12, '@'
    • /1 = 19
    • /2 = 12
    • /3 = '@'