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

📄 dev_wic_serial.h

📁 思科路由器仿真器,用来仿7200系列得,可以在电脑上模拟路由器
💻 H
字号:
/* * Cisco router simulation platform. * Copyright (c) 2007 Christophe Fillot (cf@utc.fr) * * WIC-1T & WIC-2T devices. */#ifndef __DEV_WIC_SERIAL_H__#define __DEV_WIC_SERIAL_H__#include <sys/types.h>#include "utils.h"#include "vm.h"#include "cpu.h"#include "device.h"enum {   WIC_SERIAL_MODEL_1T = 1,   WIC_SERIAL_MODEL_2T,};/* Create a WIC serial device */struct wic_serial_data *dev_wic_serial_init(vm_instance_t *vm,char *name,u_int model,                    m_uint64_t paddr,m_uint32_t len);/* Remove a WIC serial device */void dev_wic_serial_remove(struct wic_serial_data *d);#endif

⌨️ 快捷键说明

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