代码搜索:ROM优化
找到约 10,000 项符合「ROM优化」的源代码
代码结果 10,000
www.eeworm.com/read/169221/9875047
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/168682/9902071
vhd rom.vhd
--
-- rom.vhd
--
-- generic VHDL version of ROM
--
-- DONT edit this file!
-- generated by Jopa.java
--
library ieee;
use ieee.std_logic_1164.all;
use ieee.std_logic_arith.all;
use ieee.std_logic_u
www.eeworm.com/read/364287/9913981
rom_0
www.eeworm.com/read/364009/9926164
rom 7219.rom
000000:C011
000001:CFFE
000002:CFFD
000003:CFFC
000004:CFFB
000005:CFFA
000006:CFF9
000007:CFF8
000008:CFF7
000009:CFF6
00000A:CFF5
00000B:CFF4
00000C:CFF3
00000D:CFF2
00000E:CFF1
00000
www.eeworm.com/read/168224/9931435
rom blink.rom
www.eeworm.com/read/363337/9958607
lib rom.lib
www.eeworm.com/read/363059/9969565
h rom.h
/*0001*//*
/*0002./ * Copyright (c) 1998-2001 Sun Microsystems, Inc. All Rights Reserved.
/*0003./ *
/*0004./ * This software is the confidential and proprietary information of Sun
/*0005./ * Mic
www.eeworm.com/read/362482/9997289
v rom.v
//////////////////////////////////////////////////////////////////////
//// ////
//// 8051 program rom
www.eeworm.com/read/362310/10005820
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/362310/10005997
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