代码搜索:ROM优化
找到约 10,000 项符合「ROM优化」的源代码
代码结果 10,000
www.eeworm.com/read/143521/12868122
v rom.v
module rom(addr,data);
input[3:0] addr;
output[7:0] data;
function[7:0] romout;
input[3:0] addr;
case(addr)
0 : romout = 0;
1 : romout = 1;
2 : romout = 4;
3 : romout = 9;
4 : romout = 16;
www.eeworm.com/read/143521/12868281
v rom.v
module ROM(addr,data,oe);
output[7:0] data;
input[14:0] addr;
input oe;
reg[7:0] mem[0:255];
parameter DELAY = 100;
assign #DELAY data=(oe==0) ? mem[addr] : 8'hzz;
initial $readmemh("rom.he
www.eeworm.com/read/142897/12911049
rom awardext.rom
www.eeworm.com/read/142897/12911504
rom bios.rom
www.eeworm.com/read/243517/12936332
v rom.v
//////////////////////////////////////////////////////////////////////
//// ////
//// 8051 program rom
www.eeworm.com/read/243354/12947373
bat rom.bat
@echo off
REM Set source code directory...
if "%1"=="" (set ROOT_DIR=c:\rockos) else (set ROOT_DIR=%1)
set BOARD=itsn44b0x
set ROCK_SHELL=YES
set OS_DEBUG=NO
REM Memory map of the hareware
www.eeworm.com/read/142074/12966537
v rom.v
//////////////////////////////////////////////////////////////////////
//// ////
//// 8051 program rom
www.eeworm.com/read/242939/12971661
h rom.h
/**********************************************************************
Each of the companies; Lucent, Motorola, Nokia, and Qualcomm (hereinafter
referred to individually as "Source" or collectivel
www.eeworm.com/read/329183/12971836
c rom.c
#include "ROM_H.H"
void rom_init(void)
{
}
void rom_cs(bit flag)
{ if(flag==0)
{ P40=1;
P41=0;
P42=0;
}
else
{ P40=1;
P41=1;
P42=1;
}
}
uint READ_ROM_ID(void)
www.eeworm.com/read/329183/12971901
lst rom.lst
C51 COMPILER V7.01 ROM 11/16/2007 15:52:11 PAGE 1
C51 COMPILER V7.01, COMPILATION OF MODULE ROM
OBJECT MODULE PLACED IN .\R