代码搜索结果
找到约 129,825 项符合
Control 的代码
control.cpp
//
// C++ Implementation: Control
//
// Description:
//
//
// Author: Jally , (C) 2008
//
// Copyright: See COPYING file that comes with this distribution
//
//
#include "Control.h"
#i
control.lst
C:\tic2xx\c2000\cgtools\bin\dspa.exe control.asm control.obj -ls -v2xx
TMS320C1x/C2x/C2xx/C5x COFF Assembler Version 7.00 Thu Sep 9 16:54:59 2004
Copyright (c) 1987-1999 Texas Instruments Inco
control.asm
.title "control.asm"
.ref _c_int0,_nothing
.sect ".control"
reset: b _c_int0
int1: b _nothing
int2: b _nothing
int3: b _nothing
control.vhd
library ieee;
use ieee.std_logic_1164.all;
entity control is
port ( clk : in std_logic;
clks :out std_logic);
end control;
architecture aa of control is
signal count : integer rang
control.rpt
Project Information d:\biyesheji\jtdkz\control.rpt
MAX+plus II Compiler Report File
Version 10.2 07/10/2002
Compiled: 12/13/2005 14:43:20
Copyright (C) 1988-2002 Al
control.prw
[System]
System1=main
[main]
Project1=Control.prj
control.cpp
// Control.cpp : implementation file
//
#include "stdafx.h"
#include "aaa.h"
#include "Control.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
control.vhd
library ieee;
use ieee.std_logic_1164.all;
package state_pack is
type state is (qa,qb);
end state_pack;
library ieee;
use ieee.std_logic_1164.all;
use work.state_pack.all;
entity control is
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