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

📄 of1275_io.c

📁 open source bios with linux platform, very good and can be reused.
💻 C
字号:
#include "of1275.h"static int of_write_initialized = 0;static int stdout_ihandle = 0;static int of_read_initialized = 0;static int stdin_ihandle = 0;int write(int fd, char *buf, int len){	int actual;	if (fd != 1 && fd != 2) {		// printk("write: bad id %x\n", fd);		exit(1);	}	if (!of_write_initialized) {		stdout_ihandle =		    of_find_integer_property("/chosen", "stdout");		// printk("stdout_ihandle: %x\n",stdout_ihandle);		of_write_initialized = 1;	}	of1275_write(stdout_ihandle, buf, len, &actual);	return actual;}int read(int fd, char *buf, int len){	int actual;	if (fd != 0) {		// printk("write: bad id %x\n", fd);		exit(1);	}	if (!of_read_initialized) {		stdin_ihandle =		    of_find_integer_property("/chosen", "stdin");		of_read_initialized = 1;	}	of1275_read(stdin_ihandle, buf, len, &actual);	return actual;}exit(int status){	of1275_exit(status);	while (1);}

⌨️ 快捷键说明

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