	org 0000h
	ljmp 0100h

	org	0100h		;If you jump to 100, make sure something's there!

int:
	lcall START_CONV

begin:				;This is what is known as a "main loop"
	lcall START_CONV
	lcall	Compare
	jmp	begin
	
START_CONV:
	ret

Compare:
	ret

