//
// Constants
//
pi	const 	3

//
// Variables that do no have initial values
//
START BSS SECTION
buffer	data
y	data

//
// Variables that have initial values that are stored in EEPROM
//
START DATA SECTION
hello	string	"Hello\123"

//
// Code
//
START CODE SECTION
top:
	push	hello
	pop
done:
	b	->top
	