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

📄 system.h

📁 linux-2.4.29操作系统的源码
💻 H
字号:
/* * linux/include/asm-arm/arch-sa1100/system.h * * Copyright (c) 1999 Nicolas Pitre <nico@cam.org> */#include <linux/config.h>#include <asm/arch/hardware.h>static inline void arch_idle(void){	cpu_do_idle();}#ifdef CONFIG_SA1100_VICTOR/* power off unconditionally */#define arch_reset(x) machine_power_off()#elsestatic inline void arch_reset(char mode){	if (mode == 's') {		/* Jump into ROM at address 0 */		cpu_reset(0);	} else {		/* Use on-chip reset capability */		RSRR = RSRR_SWR;	}}#endif

⌨️ 快捷键说明

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