basm 0.5.0

z80 assembler relying on cpclib-asm
1
2
3
4
5
6
7
8
9
10
11
12

	; Takes inspiration from BRASS assembler

	for count, 0, 10, 3
		db {count}
	endfor

	for x, 0, 3
		for y, 0, 3
			db {x}*4 + {y}
		fend
	endfor