Google
 

Trailing-Edge - PDP-10 Archives - SRI_NIC_PERM_FS_1_19910112 - c/kcc5/tstasm.c
There are no other files named tstasm.c in the archive.
int foo, bar;
int *barf0();
test()
{
    register int *adr;

	adr = barf0();
	barf2(&(*adr));
	barf3(*adr);
	foo = 123;
	asm("\
	move 1,bar\n\
	movem 1,foo"
	);
	bar = foo;
}