Electronic Components Datasheet Search
  English  ▼
ALLDATASHEET.NET

X  

CY3120R62 Datasheet(PDF) 4 Page - Cypress Semiconductor

Part # CY3120R62
Description  Warp-R CPLD Development Software for PC
Download  8 Pages
Scroll/Zoom Zoom In 100%  Zoom Out
Manufacturer  CYPRESS [Cypress Semiconductor]
Direct Link  http://www.cypress.com
Logo CYPRESS - Cypress Semiconductor

CY3120R62 Datasheet(HTML) 4 Page - Cypress Semiconductor

  CY3120R62 Datasheet HTML 1Page - Cypress Semiconductor CY3120R62 Datasheet HTML 2Page - Cypress Semiconductor CY3120R62 Datasheet HTML 3Page - Cypress Semiconductor CY3120R62 Datasheet HTML 4Page - Cypress Semiconductor CY3120R62 Datasheet HTML 5Page - Cypress Semiconductor CY3120R62 Datasheet HTML 6Page - Cypress Semiconductor CY3120R62 Datasheet HTML 7Page - Cypress Semiconductor CY3120R62 Datasheet HTML 8Page - Cypress Semiconductor  
Zoom Inzoom in Zoom Outzoom out
 4 / 8 page
background image
CY3120
Document #: 38-03049 Rev. *C
Page 4 of 8
ENTITY seg7 IS
PORT(
inputs: IN STD_LOGIC_VECTOR (0 to 3)
outputs: OUT STD_LOGIC_VECTOR (0 to 6)
);
END SEG7;
ARCHITECTURE mixed OF seg7 IS
CONSTANT truthTable:
ttf_table (0 to 11, 0 to 10) := (
-- input&
output
-- -----------------------
”0000”&
”0111111”,
”0001”&
”0000110”,
”0010”&
”1011011”,
”0011”&
”1001111”,
”0100”&
”1100110”,
”0101”&
”1101101”,
”0110”&
”1111101”,
”0111”&
”0000111”,
”1000”&
”1111111”,
”1001”&
”1101111”,
”101-”&
”1111100”, --creates E pattern
”111-”&
”1111100”
);
BEGIN
outputs <= ttf(truthTable,inputs);
END mixed;
Boolean Equations
A third design-entry method available to Warp users is Boolean
equations. Figure 2 displays a schematic of a simple one-bit
half adder. The following code describes how this one-bit half
adder can be implemented in Warp with Boolean equations:
LIBRARY ieee;
USE ieee.std_logic_1164.all;
--entity declaration
ENTITY half_adder IS
PORT (x, y : IN std_logic;
sum, carry : OUT std_logic);
END half_adder;
--architecture body
ARCHITECTURE behave OF half_adder IS
BEGIN
sum <= x XOR y;
carry <= x AND y;
END behave;
Structural VHDL
While all of the design methodologies described thus far are
high-level entry methods, structural VHDL provides a method
for designing at a very low level. In structural descriptions, the
designer simply lists the components that make up the design
and specifies how the components are wired together.
Figure 3 displays the schematic of a simple three-bit shift
register and the following code shows how this design can be
described in Warp using structural VHDL:
LIBRARY ieee;
USE ieee.std_logic_1164.all;
USE work.rtlpkg.all;
ENTITY shifter3 IS port (
clk : IN STD_LOGIC;
x : IN STD_LOGIC;
q0 : OUT STD_LOGIC;
q1 : OUT STD_LOGIC;
q2 : OUT STD_LOGIC);
END shifter3;
ARCHITECTURE struct OF shifter3 IS
SIGNAL q0_temp, q1_temp, q2_temp : STD_LOGIC;
BEGIN
d1 : DFF PORT MAP(x,clk,q0_temp);
d2 : DFF PORT MAP(q0_temp,clk,q1_temp);
d3 : DFF PORT MAP(q1_temp,clk,q2_temp);
q0 <= q0_temp;
q1 <= q1_temp;
q2 <= q2_temp;
END struct;
All of the design-entry methods described can be mixed as
desired. VHDL has the ability to combine both high- and
low-level entry methods in a single file. The flexibility and
power of VHDL allows users of Warp to describe designs using
whatever method is appropriate for their particular design.
A Verilog Design Example
Design Entry
Warp descriptions specify:
• The behavior or structure of a design.
• The mapping of signals in a design to the pins of a
PLD/CPLD (optional).
The part of a Warp description that specifies the behavior or
structure of the design is called a module. The module
declares the design’s interface signals (i.e., defines what
external signals the design has, and what their directions and
types are).
Figure 2. One-Bit Half Adder
x
y
carry
sum
1
Figure 3. Three-Bit Shift Register Circuit Design
clk
dq
clk
d
q
clk
dq
x
clk
q0
q1
q2


Similar Part No. - CY3120R62

ManufacturerPart #DatasheetDescription
logo
Cypress Semiconductor
CY3125 CYPRESS-CY3125 Datasheet
86Kb / 8P
   Warp CPLD Development Tool for UNIX
CY3128 CYPRESS-CY3128 Datasheet
118Kb / 8P
   Warp Professional CPLD Software
CY3128R62 CYPRESS-CY3128R62 Datasheet
118Kb / 8P
   Warp Professional CPLD Software
More results

Similar Description - CY3120R62

ManufacturerPart #DatasheetDescription
logo
Cypress Semiconductor
CY3128 CYPRESS-CY3128 Datasheet
118Kb / 8P
   Warp Professional CPLD Software
CY3125 CYPRESS-CY3125 Datasheet
86Kb / 8P
   Warp CPLD Development Tool for UNIX
CY3130 CYPRESS-CY3130 Datasheet
75Kb / 7P
   Warp Enterprise??VHDL CPLD Software
CY3138 CYPRESS-CY3138 Datasheet
70Kb / 6P
   Warp Enterprise??Verilog CPLD Software
logo
Broadcom Corporation.
CALISTO-BCM1500 BOARDCOM-CALISTO-BCM1500 Datasheet
685Kb / 2P
   SOFTWARE DEVELOPMENT KIT
logo
Altera Corporation
5M570ZF256C5N ALTERA-5M570ZF256C5N Datasheet
1,020Kb / 24P
   MAX V CPLD Development Board
logo
PHOENIX CONTACT
2985990 PHOENIX-2985990 Datasheet
87Kb / 3P
   Development software for web-based visualizations
logo
STMicroelectronics
STREALIZER-II STMICROELECTRONICS-STREALIZER-II Datasheet
50Kb / 4P
   STREALIZER-II development software
November 2010 Rev 1
logo
Silicon Laboratories
AN673 SILABS-AN673 Datasheet
47Kb / 4P
   PRECISION32??SOFTWARE DEVELOPMENT KIT
logo
STMicroelectronics
MDK-ARM STMICROELECTRONICS-MDK-ARM Datasheet
81Kb / 2P
   MDK-ARM software development environment for Cortex짰-M and Cortex짰-R based microcontroller devices
February 2015
More results


Html Pages

1 2 3 4 5 6 7 8


Datasheet Download

Go To PDF Page


Link URL




Privacy Policy
ALLDATASHEET.NET
Does ALLDATASHEET help your business so far?  [ DONATE ] 

About Alldatasheet   |   Advertisement   |   Contact us   |   Privacy Policy   |   Link Exchange   |   Manufacturer List
All Rights Reserved©Alldatasheet.com


Mirror Sites
English : Alldatasheet.com  |   English : Alldatasheet.net  |   Chinese : Alldatasheetcn.com  |   German : Alldatasheetde.com  |   Japanese : Alldatasheet.jp
Russian : Alldatasheetru.com  |   Korean : Alldatasheet.co.kr  |   Spanish : Alldatasheet.es  |   French : Alldatasheet.fr  |   Italian : Alldatasheetit.com
Portuguese : Alldatasheetpt.com  |   Polish : Alldatasheet.pl  |   Vietnamese : Alldatasheet.vn
Indian : Alldatasheet.in  |   Mexican : Alldatasheet.com.mx  |   British : Alldatasheet.co.uk  |   New Zealand : Alldatasheet.co.nz
Family Site : ic2ic.com  |   icmetro.com