代码搜索:Process
找到约 10,000 项符合「Process」的源代码
代码结果 10,000
www.eeworm.com/read/451467/7463305
plg temper.plg
礦ision3 Build Log
Project:
D:\My Documents\我的单片机实验\34.带有存储器功能的数字温度计-DS1624技术应用\Keil-C\temper.uv2
Project File Date: 08/20/2007
Output:
Build t
www.eeworm.com/read/451329/7467348
c execl.c
#include
#include
void main(void)
{
printf("About to call child process\n\n");
execl("CHILD.EXE", "CHILD.EXE",
"AAA", "BBB", "CCC", NULL);
printf("\n\nBa
www.eeworm.com/read/451236/7468821
vhd mycount.vhd
library ieee;
use ieee.std_logic_1164.all;
use ieee.std_logic_unsigned.all;
entity mycount is
port (clk:in std_logic;
s1,s2:out bit;
y1,y2:out std_logic_vector(6 downto 0))
www.eeworm.com/read/451232/7468924
vhd myled8.vhd
entity myled8 is
port (clk:in bit;
y:out bit_vector(7 downto 0));
end myled8;
architecture bhv of myled8 is
signal b:integer range 0 to 7;
begin
a1:process(clk)
variable a:int
www.eeworm.com/read/450602/7480630
vhd 简单的锁存器.vhd
-- Latch Inference
-- Download from: http://www.fpga.com.cn
Library IEEE ;
use IEEE.std_logic_1164.all ;
ENTITY latchinf IS
PORT
(
enable, data : IN BIT;
q : OUT BIT
);
END l
www.eeworm.com/read/450470/7483557
c execl.c
#include
#include
void main(void)
{
printf("About to call child process\n\n");
execl("CHILD.EXE", "CHILD.EXE",
"AAA", "BBB", "CCC", NULL);
printf("\n\nBa
www.eeworm.com/read/449996/7492104
h proc.h
#ifndef _PROC_H
#define _PROC_H
#include
#ifndef _MBUF_H
#include "mbuf.h"
#endif
#ifndef _TIMER_H
#include "timer.h"
#endif
#define SIGQSIZE 200 /* Entries in ksignal queu
www.eeworm.com/read/449912/7494047
vhd qudou.vhd
library ieee;
use ieee.std_logic_1164.all;
use ieee.std_logic_unsigned.all;
entity qudou is
port(clk,key:in std_logic;
cpo:out std_logic);
end qudou;
architecture
www.eeworm.com/read/449907/7494492
vhd qudou.vhd
library ieee;
use ieee.std_logic_1164.all;
use ieee.std_logic_unsigned.all;
entity qudou is
port(clk,key:in std_logic;
cpo:out std_logic);
end qudou;
architecture
www.eeworm.com/read/449743/7497482
java covariantreturn.java
//: polymorphism/CovariantReturn.java
class Grain {
public String toString() { return "Grain"; }
}
class Wheat extends Grain {
public String toString() { return "Wheat"; }
}
class Mil