代码搜索结果
找到约 10,000 项符合
Control 的代码
control.hif
HIF003
--
-- Copyright (C) 1988-2002 Altera Corporation
-- Any megafunction design, and related net list (encrypted or decrypted),
-- support information, device programming or simulation file, an
control.pin
-- Copyright (C) 1988-2002 Altera Corporation
-- Any megafunction design, and related net list (encrypted or decrypted),
-- support information, device programming or simulation file, and any other
control.vhd
LIBRARY IEEE;
USE IEEE.STD_LOGIC_1164.ALL;
USE IEEE.STD_LOGIC_UNSIGNED.ALL;
USE IEEE.STD_LOGIC_ARITH.ALL;
ENTITY CONTROL IS
PORT( CLK,RESET,SET : IN STD_LOGIC;
ADIN : IN STD_LOGIC_
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
control.cpp
#include "control.h"
////////////////////////// 提供提示和帮助信息 /////////////////////////////
void Control::welcome(HWND hwnd)
{
//创建一个对话框显示提示信息
MessageBox(hwnd, "点击鼠标左键设置点位置点\n 点击鼠标右键清空所有点\n点菜单开始
control.h
#pragma once
#include "head.h"
#include "map.h"
#include "defaultmap.h"
#include "roundmap.h"
#include "connectline.h"
#include "ga.h"
#include "resource.h"
class Control
{
public:
Contr
control.h
#include
typedef struct data_control {
pthread_mutex_t mutex;
pthread_cond_t cond;
int active;
} data_control;