aboutsummaryrefslogtreecommitdiff
path: root/demo/add.asm
blob: 1b11842a2809714477bdd12be33a49fb9b6f72f7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
	ORG 30
	LDA X I
	ADD Y	/simple comment
	STA S	/ another one
	HLT

	/ variables
X,	HEX 1A
Y,	DEC -23
S,	DEC 0

	END