ramfiles.c
来自「MIPS处理器的bootloader,龙芯就是用的修改过的PMON2」· C语言 代码 · 共 20 行
C
20 行
/* $Id: ramfiles.c,v 1.1 2002/03/20 22:57:07 patrik Exp $ */#include <termio.h>#include <pmon.h>#include "logfile.h"/************************************************************* * _mfile[] * A stub to satisfy the linker when building PMON. This is * necessary because the same read() and write() routines are * used by both PMON and the client, and the client supports * ram-based files. */Ramfile _mfile[] ={#if NLOGFILE > 0 {"logger", 0, 0x3000, 0x1000, 0x0000},#endif {0}};
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?