#define B_CALL(xxxx)	rst 28h \ .dw xxxx		
#define B_JUMP(xxxx)	call 50h \ .dw xxxx	

_homeup		=4558h
_newline		=452Eh	
_clrlcdfull		=4540h
	
	.org 9D95h	
	
	B_CALL(_clrlcdfull)
	B_CALL(_homeup)		;Call up the home screen
	B_CALL(_newline)		;Move cursor to next line
	ret			;Return home

.end						
END

