代码搜索结果
找到约 79,096 项符合
Memory 的代码
memory.pjt
; Code Composer Project File, Version 2.0 (do not modify or remove this line)
[Project Settings]
ProjectDir="D:\test\lab24xx54xx\2407EDULab.stu\Lab03-Memory\"
ProjectType=Executable
CPUFamily=TM
memory.lnp
".\Obj\Startup.obj",
".\Obj\irq.obj",
".\Obj\pwmtest.obj",
".\Obj\pwm.obj"
TO ".\Obj\Memory"
PRINT(".\Lst\Memory.map") CASE
CLASSES (DATA (0x40000000-0x40007FFF),
CODE (0x0-0x7FFFF), CONST
memory.h
#ifndef _MEMORY_H_
#define _MEMORY_H_
#include
/**
* Pre-allocate a chunk of memory and allocate them in small pieces.
* Those memory are never freed after allocation. Used for persist
memory.cpp
#include "memory.h"
#define PRE_ALLOC_SIZE 2097152 /* 2MB */
namespace rmmseg
{
char *_pool_base = static_cast(std::malloc(PRE_ALLOC_SIZE));
int _pool_size = PRE_ALLOC_SIZE;
}
memory.x
MEMORY
{
page0 (rwx) : ORIGIN = 0x0, LENGTH = 256
text (rx) : ORIGIN = 0x8000, LENGTH = 0x3f00
data : ORIGIN = 0x2000, LENGTH = 0x2000
}
PROVIDE (_stack = 0x4000 - 1);
memory.v
module Memory(address, write, read, data);
// parameters so that it is easy to build up the instructions we'll put in the memory
parameter ALU = 6'h00; // op = 0
parameter LW = 6'h23
memory.pjt
; Code Composer Project File, Version 2.0 (do not modify or remove this line)
[Project Settings]
ProjectDir="C:\ICETEK-VC5509-EDULab\Lab0201-Memory\"
ProjectType=Executable
CPUFamily=TMS320C55XX
memory.c
/*----------------------------------------------------------------------------
* Name: MEMORY.C
* Purpose: USB Mass Storage Demo
* Version: V1.10
*---------------------------
memory.__i
-c --device DARMP -g -O0 --apcs=interwork -I "d:\Keil\ARM\INC\Philips" -o ".\Obj\memory.o" "memory.c"
memory.lnp
".\obj\lpc2300.o" ".\obj\usbcore.o" ".\obj\usbdesc.o" ".\obj\usbhw.o" ".\obj\usbuser.o" ".\obj\mscuser.o" ".\obj\memory.o" ".\obj\diskimg.o" ".\obj\lcd_4bit.o" --strict --scatter ".\Obj\Memory.sct"