Advertisement
Leo40Bin

Untitled

Jun 21st, 2019
2,585
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. ; ---------------------------------------------------------------------------
  2. ; utility macro - ds that counts total bytes
  3. totalbytes := 0
  4. dss macro length
  5.     ds.ATTRIBUTE length
  6.     if ATTRIBUTE=="b"
  7.     totalbytes := totalbytes+1
  8.     elseif ATTRIBUTE=="w"
  9.     totalbytes := totalbytes+2
  10.     elseif ATTRIBUTE=="l"
  11.     totalbytes := totalbytes+4
  12.     endif
  13.     endm
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement