?? taihu.s
字號:
#include <config.h>#include <mpc8xx.h>#include <ppc4xx.h>#include <version.h>#include <ppc_asm.tmpl>#include <ppc_defs.h>#include <asm/cache.h>#include <asm/mmu.h> .section ".text"/*------------------------------------------------------------------------------- *//* Function: out32 *//* Description: Output 32 bits *//*------------------------------------------------------------------------------- */ .globl out32out32: stw 4,0x0000(3) /*原來是:stw r4,0x0000(r3),但是#include <ppc_asm.tmpl>沒成功,就只能直接填寫4,3了*/ blr/*------------------------------------------------------------------------------- *//* Function: in32 *//* Description: Input 32 bits *//*------------------------------------------------------------------------------- */ .globl in32in32: lwz 3,0x0000(3) blr
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -