代码搜索:ROM优化

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

代码结果 10,000
www.eeworm.com/read/460064/7258339

rom putpwm.rom

000000:940C 000001:002B 000002:940C 000003:0000 000004:940C 000005:0000 000006:940C 000007:0000 000008:940C 000009:005B 00000A:940C 00000B:0000 00000C:940C 00000D:0000 00000E:940C 00000
www.eeworm.com/read/459872/7263887

rom usb.rom

000000:940C 000001:0090 000002:940C 000003:0220 000004:940C 000005:0000 000006:940C 000007:0000 000008:940C 000009:0000 00000A:940C 00000B:0000 00000C:940C 00000D:0000 00000E:940C 00000
www.eeworm.com/read/459583/7273496

rom main.rom

000000:940C 000001:00F7 000002:940C 000003:0000 000004:940C 000005:0000 000006:940C 000007:0000 000008:940C 000009:0000 00000A:940C 00000B:0000 00000C:940C 00000D:0000 00000E:940C 00000
www.eeworm.com/read/459512/7274462

rom main.rom

000000:940C 000001:003C 000002:940C 000003:0000 000004:940C 000005:0000 000006:940C 000007:0000 000008:940C 000009:0000 00000A:940C 00000B:0000 00000C:940C 00000D:0000 00000E:940C 00000
www.eeworm.com/read/459166/7279394

mif rom.mif

-- Copyright (C) 1991-2007 Altera Corporation -- Your use of Altera Corporation's design tools, logic functions -- and other software and tools, and its AMPP partner logic -- functions, and any o
www.eeworm.com/read/458723/7290691

h rom.h

/*≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡ □ □ ROM索引描述宏头文件(rom.h) generated by 《PdaTools-BmpToGray.exe》。 □ □---2001.8.6--14:18---------------------------------------------------- ≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡
www.eeworm.com/read/458154/7303322

h rom.h

/*≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡ □ □ ROM索引描述宏头文件(rom.h) generated by 《PdaTools-BmpToGray.exe》。 □ □---2001.8.6--14:18---------------------------------------------------- ≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡
www.eeworm.com/read/457165/7333297

rom procyon.rom

S00E000070726F63796F6E2E726F6D6B S11800000C9430000C949D080C949D080C949D080C949D080CF7 S118001594E0110C949D080C949D080C949D080C949D080C9499 S118002A9D080C949D080C949D080C949D080C949D080C949DC7 S118
www.eeworm.com/read/456603/7343806

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/456603/7343883

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