console_put.s

来自「使用广泛的日本著名的开源嵌入式实时操作系统T-Kernel的源码」· S 代码 · 共 39 行

S
39
字号
/* *---------------------------------------------------------------------- *    T-Kernel * *    Copyright (C) 2004-2006 by Ken Sakamura. All rights reserved. *    T-Kernel is distributed under the T-License. *---------------------------------------------------------------------- * *    Version:   1.02.02 *    Released by T-Engine Forum(http://www.t-engine.org) at 2006/8/9. * *---------------------------------------------------------------------- *//* *	T-Kernel extended SVC interface library (vr5500) * *	   created from /usr/local/te/include/sys/consio.h */#include <machine.h>#include <tk/asm.h>#include <sys/svc/fnconsio.h>	.text	.balign	4	.globl	Csym(console_put)	.type	Csym(console_put), @functionCsym(console_put):	sd	$a0, 0*8($sp)	sd	$a1, 1*8($sp)	sd	$a2, 2*8($sp)	sd	$a3, 3*8($sp)	move	$a0, $sp	li	$v0, CONSIO_CONSOLE_PUT_FN	syscall	CALL_SVC	jr	$ra

⌨️ 快捷键说明

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