代码搜索:ROM优化
找到约 10,000 项符合「ROM优化」的源代码
代码结果 10,000
www.eeworm.com/read/308751/13693631
bin rom.bin
www.eeworm.com/read/308751/13693711
vhd rom.vhd
--------------------------------------------------------------------------------
-- This file is owned and controlled by Xilinx and must be used --
-- solely for design, simulation
www.eeworm.com/read/308751/13693810
sym rom.sym
VERSION 5
BEGIN SYMBOL rom
SYMBOLTYPE BLOCK
TIMESTAMP 2007 5 3 2 16 54
SYMPIN 0 48 Input addr(13:0)
SYMPIN 0 240 Input clk
SYMPIN 352 48 Output dout(13:0)
RECTANGLE N 32 0 320 272
BEGIN DISPL
www.eeworm.com/read/308751/13693817
asy rom.asy
Version 4
SymbolType BLOCK
RECTANGLE Normal 32 0 320 272
PIN 0 48 LEFT 36
PINATTR PinName addr[13:0]
PINATTR Polarity IN
LINE Wide 0 48 32 48
PIN 0 240 LEFT 36
PINATTR PinName clk
PINATTR P
www.eeworm.com/read/308751/13693848
veo rom.veo
/*******************************************************************************
* This file is owned and controlled by Xilinx and must be used *
* solely for design, simulation,
www.eeworm.com/read/308751/13693865
ngo rom.ngo
www.eeworm.com/read/307658/13717841
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/307658/13717918
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/307606/13719526
vhd rom.vhd
-- megafunction wizard: %LPM_ROM%
-- GENERATION: STANDARD
-- VERSION: WM1.0
-- MODULE: altsyncram
-- ============================================================
-- File Name: rom.vhd
-- Mega
www.eeworm.com/read/307199/13726888
vhd rom.vhd
LIBRARY IEEE ;
USE IEEE.STD_LOGIC_1164.ALL;
USE IEEE.STD_LOGIC_UNSIGNED.ALL;
PACKAGE ROM IS
CONSTANT ROM_WIDTH:INTEGER :=8;
CONSTANT ROM_LENGTH:INTEGER:=126; ---115
SUBTYPE ROM_WORD IS STD_LO