代码搜索:memory
找到约 10,000 项符合「memory」的源代码
代码结果 10,000
www.eeworm.com/read/242363/13010486
cmd memory.cmd
/*--------------------------------------------------------------------*/
/* LINKER COMMAND FILE - MEMORY SPECIFICATION for the F240 */
/*--------------------------------------------------
www.eeworm.com/read/242363/13010490
mak memory.mak
/************* Code Composer V1 Project Data ********************
The following section contains data generated by Code Composer
to store project information like build options, source filenames
www.eeworm.com/read/242363/13010493
obj memory.obj
www.eeworm.com/read/242363/13010497
out memory.out
www.eeworm.com/read/242363/13010500
paf memory.paf
www.eeworm.com/read/242363/13010503
asm memory.asm
.global start ; 定义全局标号
.text
start:
nop
LDp #4 ; 直接寻址,装载DP值,页指针指向片内数据区DARAM B0
SPlk #1,1 ; 绝对地址201H开始的四个单元存1,2,3,4
Splk #2,2 ;
Splk #3,3 ;
Splk #4,4 ;
Splk #7,AR
www.eeworm.com/read/242359/13011516
hh memory.hh
// Copyright (C) 2003 salvatore orlando
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public Licens
www.eeworm.com/read/242359/13011536
cc memory.cc
// Copyright (C) 2003 salvatore orlando
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public Licens
www.eeworm.com/read/141399/13012416
java memory.java
import javax.swing.*;
import java.awt.*;
import java.awt.event.*;
import java.io.*;
import java.util.LinkedList;
public class Memory extends JFrame implements ActionListener
{
JMenuBar bar;
www.eeworm.com/read/328320/13034227
h memory.h
using namespace std;
struct region{
int start;
int length;
int job;
struct region * next;
};
struct RegionPointerList{
struct region * data;
struct RegionPointerList * next;