//
// C++ Implementation: Control
//
// Description:
//
//
// Author: Jally , (C) 2008
//
// Copyright: See COPYING file that comes with this distribution
//
//
#include "Control.h"
#i
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
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
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