141798Sbostic/*- 2*61244Sbostic * Copyright (c) 1990, 1993 3*61244Sbostic * The Regents of the University of California. All rights reserved. 441798Sbostic * 541798Sbostic * This code is derived from software contributed to Berkeley by 641798Sbostic * the Systems Programming Group of the University of Utah Computer 741798Sbostic * Science Department. 841798Sbostic * 941798Sbostic * %sccs.include.redist.c% 1041798Sbostic */ 1141798Sbostic 1241798Sbostic#if defined(LIBC_SCCS) && !defined(lint) 13*61244Sbostic .asciz "@(#)remque.s 8.1 (Berkeley) 06/04/93" 1441798Sbostic#endif /* LIBC_SCCS and not lint */ 1541798Sbostic 1641798Sbostic/* remque(entry) */ 1741798Sbostic 1841798Sbostic#include "DEFS.h" 1941798Sbostic 2041798SbosticENTRY(remque) 2141798Sbostic movl sp@(4),a0 2241798Sbostic movl a0@,a1 2341798Sbostic movl a0@(4),a0 2441798Sbostic movl a0,a1@(4) 2541798Sbostic movl a1,a0@ 2641798Sbostic rts 27