代码搜索:虚拟校园
找到约 4,013 项符合「虚拟校园」的源代码
代码结果 4,013
www.eeworm.com/read/187265/8837897
cpp filesystem.cpp
#include "precomp.h"
u_char g_disk[MAX_DISK_SIZE];//用内存模拟的磁盘空间
const int g_freedisksize = MAX_DISK_SIZE; //虚拟磁盘的空闲空间
const char g_freeflag = (char)0xE5;
/***********************************
www.eeworm.com/read/383289/8957247
v top.v
//顶层模块:
/****************************************************************************
模块名称:Top 文件名:top.v
模块功能:用于把产生测试信号的模块(Signal)与设计的具体模块(EEPROM_WR)
以及EEPROM虚拟模块连接起来的模块,用于全面测试。
模块说明:本
www.eeworm.com/read/360926/10071996
_c shiyan._c
//ICC-AVR application builder : 2007-5-25 21:35:24
// Target : M16
// Crystal: 7.3728Mhz
// 用途:演示getchar(),getchar(),printf()等函数的使用。
// 作者:古欣
// AVR与虚拟仪器 [url]http://www.avrvi.com[/url]
// 使用7.3
www.eeworm.com/read/160854/10485626
htm 3。2.htm
vti_encoding:SR|utf8-nl
vti_timelastmodified:TR|24 Aug 2000 04:58:10 -0000
vti_extenderversion:SR|4.0.2.3406
vti_filesize:IR|7001
vti_title:SR|虚拟存储
vti_metatags:VR|HTTP-EQUIV=Content-Type text/html;\\
www.eeworm.com/read/160854/10485664
htm 3。3.htm
vti_encoding:SR|utf8-nl
vti_timelastmodified:TR|24 Aug 2000 05:00:07 -0000
vti_extenderversion:SR|4.0.2.3406
vti_filesize:IR|11904
vti_title:SR|虚拟存储
vti_metatags:VR|HTTP-EQUIV=Content-Type text/html;\
www.eeworm.com/read/456698/7340581
h resource.h
//菜单
#define IDM_CLOSE 12
#define IDM_EXIT 17
#define IDM_HELP 22
#define IDM_ABOUT 27
//定义主键盘0-9的虚拟键码
#define VK_0 0x30
#define VK_1 0x31
#define
www.eeworm.com/read/437499/7747380
cpp bus.cpp
#include
#include
#include
#include
#include "pmplatform.h"
#include "s2440.h"
#include "ceddk.h"
#include "pkfuncs.h"
//BANK1 映射虚拟地址 对应的物理地址
#defi
www.eeworm.com/read/197085/8031748
txt 18多继承的构造函数.txt
/* 本程序在于说明:
*1.多继承情况下的构造函数的调用情况。见c++ primer 3/e p794
*2.虚拟析构函数机制。
*
*/
#include
#include
using namespace std;
/*
*
*/
class ZooAnimal {
public:
ZooAnimal();
ZooAn
www.eeworm.com/read/195584/8140252
java interpreter.java
import java.io.*;
/**
* 这个类对应C语言版本中的 fct 枚举类型和 instruction 结构,代表虚拟机指令
*/
class Instr {
// fct枚举类型的常数
public static final int lit = 0;
public static final int opr = 1;
public static fi