代码搜索:Counter
找到约 10,000 项符合「Counter」的源代码
代码结果 10,000
www.eeworm.com/read/391248/8414235
h counter.h
#ifndef COUNTER_H
#define COUNTER_H
#include
class Counter: public QWidget
{
Q_OBJECT
public:
Counter( QWidget *parent=0, const char *name=0 );
public slots:
void IncCounter();
www.eeworm.com/read/391248/8414238
cpp counter.cpp
#include
#include "counter.h"
Counter::Counter( QWidget *parent, const char *name ):QWidget( parent, name )
{
counter = 0;
label = new QLabel( "0", this );
label->setAlignment( Alig
www.eeworm.com/read/391248/8414249
o counter.o
www.eeworm.com/read/391248/8414266
cpp~ counter.cpp~
#include
#include "counter.h"
Counter::Counter( QWidget *parent, const char *name ):QWidget( parent, name )
{
counter = 0;
label = new QLabel( "0", this );
label->setAlignment( Alig
www.eeworm.com/read/391216/8415235
v counter.v
module counter(count_done, gnt_done, count_reset, Clk);
output count_done;
output gnt_done;
input count_reset;
input Clk;
reg [3:0]cnt, d_cnt;
wire gnt_done = (d_cnt < 4'b1001);
wire count_
www.eeworm.com/read/291022/8444633
asm counter.asm
;*********************************************************
;程序名称:可执行文件加密锁
;本文件是动态连接库文件的源代码
;本程序可以对有效的PE文件进行加锁,使程序运行以前必须通过密码验证
;作者:牛博威
;日期:2003-11-25
;整理:2003-11-7
;出处:http://nboy.cnwlt.com
;注意
www.eeworm.com/read/189731/8457445
js counter.js
function s_rep(s, o, n)
{
var i = s.indexOf(o), l = n.length > 0 ? n.length : 1;
while (s && i >= 0)
{
s = s.substring(0, i) + n + s.substring(i + o.length);
www.eeworm.com/read/189731/8457452
png counter.png
www.eeworm.com/read/189369/8473471
a51 counter.a51
;
CSEG AT 07C00H ; will be mapped to Data memory address 0x400
; when 1 k is configured as data memory
; (Y5 version)
DB 20 ; start with 20
END