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

📄 uncompress.h

📁 一个2.4.21版本的嵌入式linux内核
💻 H
字号:
/* * linux/include/asm-arm/arch-nexuspci/uncompress.h *  from linux/include/asm-arm/arch-ebsa110/uncompress.h * * Copyright (C) 1996,1997,1998 Russell King * Copyright (C) 1998, 1999 Phil Blundell */#include <asm/io.h>#define UARTBASE 0x00400000/* * This does not append a newline */static void puts(const char *s){  while (*s)  {    char c = *(s++);    while (!(__raw_readb(UARTBASE + 0x14) & 0x20))      barrier();    __raw_writeb(c, UARTBASE);    if (c == 10) {      while (!(__raw_readb(UARTBASE + 0x14) & 0x20))        barrier();      __raw_writeb(13, UARTBASE);    }  }}/* * nothing to do */#define arch_decomp_setup()/* * Stroke the watchdog so we don't get reset during decompression. */#define arch_decomp_wdog()				\	do {						\	__raw_writel(1, 0xa00000);			\	__raw_writel(0, 0xa00000);			\	} while (0)

⌨️ 快捷键说明

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