chrpmap.s

来自「是关于linux2.5.1的完全源码」· S 代码 · 共 20 行

S
20
字号
/* * arch/ppc/boot/simple/chrpmap.S * * Author: Tom Rini <trini@mvista.com> * * This will go and setup ISA_io to 0xFE00000. */#include <asm/ppc_asm.h>	.text	.globl setup_legacysetup_legacy:	lis	r3,ISA_io@h	/* Load ISA_io */	ori	r3,r3,ISA_io@l	lis	r4,0xFE00	/* Load the value, 0xFE00000 */	stw	r4,0(r3)	/* store */	blr

⌨️ 快捷键说明

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