Intel x86处理器的汇编器

源代码在线查看: iob.h

软件大小: 51 K
上传用户: xiaotiao
关键词: Intel x86 处理器 汇编器
下载地址: 免注册下载 普通下载 VIP

相关代码

				#ifndef _FILE_H_				#define _FILE_H_								#define IO_BUFSIZE	8192				#define LINE_SIZE	80												typedef struct iob {					int fd;					int cnt;					char *buf_ptr;					char *tail_ptr;					char buf[IO_BUFSIZE];				} iob_t;																void init_iob(int fd, struct iob *p);				int read_into_iob(struct iob *p, unsigned int count);				int read_from_iob(struct iob *p, void *usrbuf, unsigned int count);				int write_from_iob(struct iob *p, unsigned int count);								#endif							

相关资源