usemt.s

来自「T-kernel 的extension源代码」· S 代码 · 共 33 行

S
33
字号
/* *---------------------------------------------------------------------- *    T-Kernel / Standard Extension * *    Copyright (C) 2006 by Ken Sakamura. All rights reserved. *    T-Kernel / Standard Extension is distributed  *      under the T-License for T-Kernel / Standard Extension. *---------------------------------------------------------------------- * *    Version:   1.00.00 *    Released by T-Engine Forum(http://www.t-engine.org) at 2006/8/11. * *---------------------------------------------------------------------- *//* *	usemt.S * *	Flag for indicating whether to use library for multi-task *	_usemt_ = 0	For single-task *	_usemt_ = 1	For multi-task * *	By default, when this file is linked, the library is used for *	single-task. To use it for multi-task, define _usemt_ so that *	this file is not linked. * *	Example of link specifiation for multi-task: *	gcc -Wl,--defsym,_usemt_=1 */	.globl	_usemt_	.equ	_usemt_, 0	// For single-task

⌨️ 快捷键说明

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