xref: /original-bsd/sys/tahoe/align/Apush.c (revision 2301fdfb)
1 /*	Apush.c	1.1	86/07/20	*/
2 
3 #include	"../tahoealign/align.h"
4 
5 push (infop,longword)	process_info *infop;
6 int	longword;
7 /*
8 /*	Push the given datum on the current stack.
9 /*
10 /******************************************/
11 {
12 
13 	struct oprnd temp;
14 
15 	temp.mode = Add | W;
16 	sp -= 4;
17 	temp.address = sp;
18 	temp.length = 4;
19 	write_back(infop,longword, &temp) ;
20 }
21