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

📄 uncompress.h

📁 基于组件方式开发操作系统的OSKIT源代码
💻 H
字号:
/* * linux/include/asm-arm/arch-ebsa285/uncompress.h * * Copyright (C) 1996,1997,1998 Russell King *//* * Note! This could cause problems on the NetWinder */#define BASE 0x42000160static __inline__ void putc(char c){	while (*((volatile unsigned int *)(BASE + 0x18)) & 8);	*((volatile unsigned int *)(BASE)) = c;}/* * This does not append a newline */static void puts(const char *s){	while (*s) {		putc(*s);		if (*s == '\n')			putc('\r');		s++;	}}/* * nothing to do */#define arch_decomp_setup()#define arch_decomp_wdog()

⌨️ 快捷键说明

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