| C startup routine
| Passes control to the C__START module, which parses
| the command line and then executes C_main

_main:
	movl	.a4,.sp@-		| save a4
	pea	.a5@(464)		| cliparam
	lea	[C_main.v,.a4],.a0	| get address of C_main vector
	movl	.a0,.sp@-		| parameter for C__START
	jsr	[C__START.v,.a4]	| startup and exec C_main
	movl	.sp@+,.a4		| restore a4
	rts				| just in case we return
	.data
C__START.v:	.vect	"C__START",.extproc
	.text
