代码搜索结果
找到约 10,000 项符合
Memory 的代码
memory.inc
;;*****************************************************************************
;;*****************************************************************************
;;
;; FILENAME: Memory.inc
;;
memory.java
import java.util.*;
public class Memory {
MemNode startNode = new MemNode();
MemNode endNode = new MemNode();
Vector memVec = new Vector();
Memory(int Vol){
this.startNode.volNo=0;
thi
memory.c
/*
* linux/mm/memory.c
*
* (C) 1991 Linus Torvalds
*/
/*
* demand-loading started 01.12.91 - seems it is high on the list of
* things wanted, and it should be easy to implement. - Linus
*/
/*
* 需求加载是
memory.h
/*
* NOTE!!! memcpy(dest,src,n) assumes ds=es=normal data segment. This
* goes for all kernel functions (ds=es=kernel space, fs=local data,
* gs=null), as well as for all well-behaving user programs (
memory.h
#ifndef MEMORY_H
#define MEMORY_H
class CMemory
{
HANDLE m_hProcess;
LPVOID m_pBaseAddress;
public:
CMemory();
void Create(HANDLE m_hProcess);
DWORD ReadMemory(LPVOID lpAddress);
memory.cpp
#include "StdAfx.h"
#include "Memory.h"
CMemory::CMemory()
{
m_hProcess=NULL;
m_pBaseAddress=NULL;
}
void CMemory::Create(HANDLE hProcess)
{
m_hProcess=hProcess;
}
DWORD CMemory::R
memory.c
/*
* system.c: implement the routes used to access memory under
* DEBUG state.
*
* Copyright (C) 2004, OPEN-JTAG, All rights reserved.
*/
#include
#include "../types.h"
#
memory.h
/*----------------------------------------------------------------------------
* Name: MEMORY.H
* Purpose: USB Memory Storage Demo Definitions
* Version: V1.10
*-------------
memory.c
/*----------------------------------------------------------------------------
* Name: MEMORY.C
* Purpose: USB Mass Storage Demo
* Version: V1.10
*---------------------------
memory.opt
### uVision2 Project, (C) Keil Software
### Do not modify !
cExt (*.c)
aExt (*.s*; *.src; *.a*)
oExt (*.obj)
lExt (*.lib)
tExt (*.txt; *.h; *.inc)
pExt (*.plm)
CppX (*.cpp)
DaveTm {