代码搜索结果
找到约 10,000 项符合
Memory 的代码
memory.cmd
MEMORY
{
PAGE 0: /* Program Memory */
VECS: org=00000h, len=00040h /* internal FLASH */
FLASH: org=00044h, len=07FBCh /* internal FLASH */
EXTPROG:
memory.cmd
/******************** memory.cmd ***********************
* 2002.10.1
*/
MEMORY
{
PAGE 0: PROG: origin = 0x1000, len = 0x0f80 /*4k-128 word*/
VECT: origin = 0x1f8
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.v
module memory(dataout,datain,address,we,memin,memaddr,memwe,clk,reset);
output[31:0] dataout;
input[31:0] datain,memin;
input[4:0] address,memaddr;
input clk,reset,we,memwe;
wire we1;
wire[4
memory.v
module memory(mem_data,mem_address,S,R,D);
parameter width=8;
inout [width-1:0] mem_data;
input [width-1:0] mem_address;
input S,R,D;
wire[width-1:0] mem_in;
memory.c
#include
#include
#include
#include
#include
int do_exit(long code);
#define invalidate() \
__asm__("movl %%eax,%%cr3"::"a
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 prog
memory.c
/*
* linux/mm/memory.c
*
* Copyright (C) 1991, 1992 Linus Torvalds
*/
/*
* demand-loading started 01.12.91 - seems it is high on the list of
* things wanted, and it should be easy to