uncompress.h
来自「基于组件方式开发操作系统的OSKIT源代码」· C头文件 代码 · 共 36 行
H
36 行
/* * 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 + =
减小字号Ctrl + -
显示快捷键?