ORG	0
	Goto	loop0
	org	4		;INTERRUPT_SERVICE_ROUTINE
	include "isr.inc"

loop0:
	call	InitMicroController
	call	EmInit
	CALL	InitMyApp
	bsf	INTCON,GIE	; enable interrupts

loop3:
	call	PollSCI
	call	MyApplication
	call	EmMicroEntry
	goto	loop3

MyApplication:
	return

Listing 3—Note the inclusion of the two EMIT modules. These tie the app to emWare code.