/examples/data.asm
	name data
	public _test_data

IOP	SEGMENT
_test_data:
	db 1, 20h, 'hello', 0
	dw AA55h, 'X', 'AB'
	dd 42
	ds 8
IOP	ENDS