代码搜索:ROM优化

找到约 10,000 项符合「ROM优化」的源代码

代码结果 10,000
www.eeworm.com/read/302774/13827710

v rom.v

////////////////////////////////////////////////////////////////////// //// //// //// 8051 program rom
www.eeworm.com/read/302514/13833416

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/302514/13833493

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/301795/13848323

vhd rom.vhd

-- ROM TO STORE SINE AND COSINE VALUES library ieee ; use ieee.std_logic_1164.all ; use ieee.std_logic_arith.all ; use work.butter_lib.all ; use ieee.std_logic_unsigned.all ; entity rom is po
www.eeworm.com/read/301636/13853341

vhd rom.vhd

-- ROM TO STORE SINE AND COSINE VALUES library ieee ; use ieee.std_logic_1164.all ; use ieee.std_logic_arith.all ; use work.butter_lib.all ; use ieee.std_logic_unsigned.all ; entity rom is po
www.eeworm.com/read/301045/13868235

rom romterf.rom

www.eeworm.com/read/152843/5662697

h rom.h

/**************************************************************************** ******* ******* ******* R O M *******
www.eeworm.com/read/151047/5687108

rom flashrom.rom

; ; ASIC definition ; ; 01/28/00 use ID 041F for AT49F511 ; 03/01/00 disable GPIO for Rage128/+/pro ; 05/01/00 disable VIP for Rage6 ; 05/30/00 use ID 041F for AT49F001 (128 Kbytes) ; 06/01
www.eeworm.com/read/150372/5693670

a51 rom.a51

PUBLIC _put_string ; void put_string(char code *string); PUBLIC _page_erase ; char page_erase (int faddr, char fdata, char fdm) PUBLIC write_flash ; char write_flash (int faddr, char fdata, cha
www.eeworm.com/read/150372/5693673

h rom.h

/*------------------------------------------------------------------------------ ROM.H: Header file for all TI MSC 1210 C-style boot-ROM functions Copyright 2003 Keil Software, Inc. ------------