Last active
May 15, 2016 12:39
-
-
Save MadMockers/38b1b4d92bde63c53e4b38ddc15faf4d to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.define define1, 5 | |
.define define2, 5 | |
SET A, label1+label2 | |
SET A, label1+define2 | |
SET A, define1+label2 | |
SET A, define1+define2 | |
SET A, label1-label2 | |
SET A, label1-define2 | |
SET A, define1-label2 | |
SET A, define1-define2 | |
SET A, label1*label2 | |
SET A, label1*define2 | |
SET A, define1*label2 | |
SET A, define1*define2 | |
; SET A, label1/label2 | |
; SET A, label1/define2 | |
; SET A, define1/label2 | |
; SET A, define1/define2 | |
label1: | |
label2: |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment