代码搜索结果
找到约 10,000 项符合
Control 的代码
control.v
//控制模块
/*信号定义:
clk: 输入时钟;
clear: 为整个频率计的异步复位信号;
reset: 用来在量程转换开始时复位计数器;
std_f_sel: 用来选择标准时基;
cntover: 代表超量程;
cntlow: 代表欠量程;
lock: 向锁存器发出的锁存信号。
状态A,B,C,D,E,F 采用一位热码编码 */
module <mark>Control</mark>(std_f ...
control.bsf
/*
WARNING: Do NOT edit the input and output ports in this file in a text
editor if you plan to continue editing the block that represents it in
the Block Editor! File corruption is VERY likely to
control.vwf
/*
WARNING: Do NOT edit the input and output ports in this file in a text
editor if you plan to continue editing the block that represents it in
the Block Editor! File corruption is VERY likely to
control.h
/*
========================================================================
DEVise Data Visualization Software
(c) Copyright 1992-1996
By the DEVise Development Group
Madison, Wisconsin
Al
control.v
module control(std_f_sel,reset,clk,clear,cntover,cntlow);
output[1:0] std_f_sel;
output reset;
input clk,clear,cntover,cntlow;
reg[1:0] std_f_sel;
reg reset;
reg[5:0] present,next;
parameter st