📄 usemt.s
字号:
/* *---------------------------------------------------------------------- * 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -