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

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

	END