legacy.s
来自「优龙2410linux2.6.8内核源代码」· S 代码 · 共 20 行
S
20 行
/* * arch/ppc/boot/simple/legacy.S * * Author: Tom Rini <trini@mvista.com> * * This will go and setup ISA_io to 0x8000000 and return. */#include <asm/ppc_asm.h> .text .globl serial_fixupsserial_fixups: lis r3,ISA_io@h /* Load ISA_io */ ori r3,r3,ISA_io@l lis r4,0x8000 /* Load the value, 0x8000000 */ stw r4,0(r3) /* store */ blr
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?