⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 legacy.s

📁 这个linux源代码是很全面的~基本完整了~使用c编译的~由于时间问题我没有亲自测试~但就算用来做参考资料也是非常好的
💻 S
字号:
/* * 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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -