4.3BSD-Reno/src/sys/tahoealign/Adivf.c

Compare this file to the similar file:
Show the results in this format:

/*	Adivf.c	1.1	86/07/20	*/

#include "../tahoealign/align.h"
divf(infop)	process_info *infop;
/*
/*	Divide accumulator by operand to accumulator (float).
/*
/*******************************************************************/
{
	register float	*operand_pnt;
	register float	*acc_pnt;

	operand_pnt = (float *)&operand(infop,0)->data;
	acc_pnt = (float *) &acc_high;
	*acc_pnt = *acc_pnt / *operand_pnt;
}