⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 fixade.s

📁 <B>Digital的Unix操作系统VAX 4.2源码</B>
💻 S
字号:
/*	@(#)fixade.s	4.1	(ULTRIX)	7/3/90				      *//* ------------------------------------------------------------------ *//* | Copyright Unpublished, MIPS Computer Systems, Inc.  All Rights | *//* | Reserved.  This software contains proprietary and confidential | *//* | information of MIPS and its suppliers.  Use, disclosure or     | *//* | reproduction is prohibited without the prior express written   | *//* | consent of MIPS.                                               | *//* ------------------------------------------------------------------ */#include <mips/regdef.h>#include <mips/asm.h>#include <syscall.h>#include <sysmips.h>/* * fixade is implemented via the SYS_mips system call.  The argument is * shuffled back so the MIPS_FIXADE vector can be put in the first argument. * The SYS_mips system call takes 5 arguments and unused arguments must * have zero values. */LEAF(fixade)	subu	sp,8	sw	zero,16(sp)	move	a3,zero	move	a2,zero	move	a1,a0	li	a0,MIPS_FIXADE	li	v0,SYS_sysmips	syscall	addu	sp,8	beq	a3,zero,9f	j	_cerror9:	RETEND(fixade)

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -