代码搜索:Clock
找到约 10,000 项符合「Clock」的源代码
代码结果 10,000
www.eeworm.com/read/248349/12581687
hif clock.hif
Version 5.0 Build 148 04/26/2005 SJ Full Version
29
1521
OFF
OFF
OFF
OFF
OFF
FV_OFF
VRSM_ON
VHSM_ON
0
# entity
lpm_counter
# case_insensitive
# source_file
d:|altera|quartus50|librarie
www.eeworm.com/read/248349/12581700
psp clock.psp
www.eeworm.com/read/248349/12581745
qpf clock.qpf
# Copyright (C) 1991-2005 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
www.eeworm.com/read/248349/12581747
v clock.v
/*
本实验实现一个能显示小时,分钟,秒的数字时钟。
*/
module clock(clk,rst,dataout,en);
input clk,rst;
output[7:0] dataout;
reg[7:0] dataout;
output[7:0] en;
reg[7:0] en;
reg[3:0] dataout_buf[7:0];
reg[25:0] cn
www.eeworm.com/read/248349/12581749
qws clock.qws
[ProjectWorkspace]
ptn_Child1=Frames
ptn_Child2=ActionPoints
[ProjectWorkspace.Frames]
ptn_Child1=ChildFrames
[ProjectWorkspace.Frames.ChildFrames]
ptn_Child1=Document-0
ptn_Child2=Document-1
www.eeworm.com/read/248349/12581756
qsf clock.qsf
# Copyright (C) 1991-2005 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
www.eeworm.com/read/334543/12594397
txt clock.txt
基于51单片机的电子钟的设计
2007-05-24 08:32//
本程序为2005带单片机课程设计时所写,并有相关的硬件电路板
//本程序在硬件上测试通过
//晶振为11.0592MHZ
//程序中用单片机的P1口的I/O引脚做按键
//用四位一体的共阴数码管显示
org 0000h
ljmp start
ORG
www.eeworm.com/read/146790/12612020
java clock.java
import java.applet.Applet;
import java.awt.*;
import java.util.Calendar;
public class Clock extends Applet implements Runnable
{ Thread thread;
Font font=new Font("Monospaced",Font.BOLD,6
www.eeworm.com/read/146790/12612069