;
; appEntry.s
;
; Registering application entry points
;
;  1994 Straylight
;

;----- Standard stuff -------------------------------------------------------

		GET	libs:header
		GET	libs:swis

;----- Main code ------------------------------------------------------------

		AREA	|DLL$$Code|,CODE,READONLY

; --- _dll_regAppEntry ---
;
; On entry:	a1 == pointer to stubs table
;		a2 == pointer to name table
; On exit:	--

		EXPORT	|_dll_regAppEntry|
|_dll_regAppEntry| ROUT

		MOV	ip,lr
		SWI	DLL_RegisterAppEntryTable
		MOVS	pc,ip

		LTORG

;----- That's all, folks ----------------------------------------------------

		END
