代码搜索:光子计数

找到约 7,260 项符合「光子计数」的源代码

代码结果 7,260
www.eeworm.com/read/256873/11966873

c w8254.c

void Tim0_8254(uint a) { uchar l,h; l=(uchar)(a&0x00ff); h=(uchar)(a>>8); A1_8254=1;A0_8254=1; CS_8254=0x36; //选择写方式控制字,计数器0先低后高字节,方式3,二进制计数 A1_8254=0;A0_8254=0; CS_8254=l;
www.eeworm.com/read/254214/12155521

txt pc_generater.txt

pc_generater 摘要: pc_gen模块是用来产生程序计数器的内容,通过本模块可以实现程序的转移、返回和顺序执行等功能。
www.eeworm.com/read/167697/9955502

txt 计数器:generic语句的应用.txt

-- n-Bit Synchronous Counter -- dowload from: www.fpga.com.cn & www.pld.com.cn LIBRARY ieee; USE ieee.Std_logic_1164.ALL; USE ieee.Std_logic_unsigned.ALL; ENTITY cntrnbit IS GENERIC(
www.eeworm.com/read/167697/9955511

txt 计数器:wait语句的应用.txt

-- This example shows an inefficient way of describing a counter. -- vhdl model of a 3-state counter illustrating the use -- of the WAIT statement to suspend a process.At each wait -- statement th
www.eeworm.com/read/167697/9955513

txt 计数器:generate语句的应用.txt

-- Generated Binary Up Counter -- The first design entity is a T-type flip-flop. -- The second is an scalable synchronous binary up counter illustrating the use of the generate statement to produce