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