SirCmpwn

Untitled

May 2nd, 2012
45
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. ; Color macros include
  2.  
  3. .equ color_blue 0x1234
  4. .equ color_red 0x4321
  5.  
  6. .macro color(background, foreground, text) ; Also supports notch-style macros
  7. .dw color_background | (color_foreground << 8), text
  8. .endmacro
Advertisement
Add Comment
Please, Sign In to add comment