?? crt1f.s
字號:
/* *---------------------------------------------------------------------- * T-Kernel * * Copyright (C) 2004-2006 by Ken Sakamura. All rights reserved. * T-Kernel is distributed under the T-License. *---------------------------------------------------------------------- * * Version: 1.02.01 * Released by T-Engine Forum(http://www.t-engine.org) at 2006/1/10. * *---------------------------------------------------------------------- *//* * @(#)crt1f.S (SH) * * C startup * * For static links * shared library loader is not linked. */#include <machine.h> .data .globl Csym(__initloading) .globl Csym(__callinit) .globl Csym(__callfini) .balign 4Csym(__initloading): .int initloadingCsym(__callinit): .int Csym(_init)Csym(__callfini): .int Csym(_fini) .text .balign 2initloading: /* No action */ rts nop
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -