SlideShare a Scribd company logo
http://www.bized.co.uk




                                   Session 5


Prepared by
          Alaa Salah Shehata
          Mahmoud A. M. Abd El Latif
          Mohamed Mohamed Tala’t
          Mohamed Salah Mahmoud

                                                     Version 02 – October 2011
                                                  Copyright 2006 – Biz/ed
http://www.bized.co.uk




                                             5
           -Data Types

Contents           -Scalar
                   -Composite
                   -User defined

           -LABs
                   -Memory units




                                                 2
                                   Copyright 2006 – Biz/ed
Session 5

                   http://www.bized.co.uk




            Data Types




                                    3
                      Copyright 2006 – Biz/ed
Session 5

                                                                 http://www.bized.co.uk



Data Types
-Type declaration is made inside architecture declaration, entity declaration,
process declaration

-VHDL is a strongly typed language, meaning that data objects of different types
cannot be assigned to one another without the use of a type conversion function.

Data Types can be classified into:
1–Scalar types
Refers to all types whose objects have a single value at any time instant.

2–Composite types
Refers to types that have a regular structure consisting of elements of the same type
such as array or elements of different types such as record.

3–User defined types
Types that are defined by default and to be defined by the user before using.
                                                                                   4
                                                                     Copyright 2006 – Biz/ed
Session 5

                                                                 http://www.bized.co.uk



Data Types                  1-Scalar Types
-Refers to all types whose objects have a single value at any time instant.

Scalar Types

         1-Enumerated types
                   a–Bit
                   b–Boolean
                   c–Character
                   d-String
         2–Integer
         3–Floating Point
         4–Physical types




                                                                                   5
                                                                     Copyright 2006 – Biz/ed
Session 5

                                                                     http://www.bized.co.uk



Data Types                    1-1 Enumerated Types
-Specifies list of possible values

a-Bit
          Type bit defines two standard logical values (‘0’ , ‘1’)
          bit ( „0‟ , „1‟ ) ;


b-Boolean
        Type Boolean is used in the conditional operations
        boolean ( false , true ) ;

          Logical functions such as equality (=) and comparison (<) functions
          return a BOOLEAN value.
          Example:     Evaluate the following relational expression:
           ”1011” < ”110”. Comment!
           The expression evaluates to true.


                                                                                      6
                                                                        Copyright 2006 – Biz/ed
Session 5

                                                                http://www.bized.co.uk



Data Types                  1-1 Enumerated Types


c-Character
        covers all characters
        character ( „@‟,‟#‟, …. „A‟ , „B‟, ...) ; The CHARACTER data
type enumerates the ASCII character set.


D- string
if we need to write string of characters we use this key word




                                                                                 7
                                                                   Copyright 2006 – Biz/ed
Session 5

                        http://www.bized.co.uk




Enumerated Types



                   Example
                      22




                                           8
                             Copyright 2006 – Biz/ed
Session 5

                                                           http://www.bized.co.uk



Example 1-1 Enumerated Types

entity ex_enum is
    Port ( inp1       :   in    STD_LOGIC;
             inp2     :   in    STD_LOGIC;
             outp1    :   out   Boolean;
             outp2    :   out   Character;
             outp3    :   out   string(1 to 5)

  );
end ex_enum;

architecture Behavioral of ex_enum         is
begin
outp1 <= true    when inp1 < inp2          else false ;
 outp2 <= „t‟    when inp1 < inp2          else „f‟ ;
outp3 <= “equal” when inp1=inp2            else “notEQ”;
end Behavioral;

                                                                            9
                                                              Copyright 2006 – Biz/ed
Session 5

                                                              http://www.bized.co.uk



Data Types                 1-2 Integer Type



integer range -2147483648 to 2147483648 ;

Example
          Signal counter : integer range 0 to 15 ;


Note

The implementation of the type integer in the synthesis and depends on the range
specified by the user.




                                                                               10
                                                                  Copyright 2006 – Biz/ed
Session 5

                      http://www.bized.co.uk




Integer Type


                 Example
                    23




                                        11
                           Copyright 2006 – Biz/ed
Session 5

                                       http://www.bized.co.uk



integer Types

PROCESS (X)
  variable a: integer;
  variable b: integer range 0 to 15;

  type int is range -10 to 10;
  variable d: int;




BEGIN
  a := 1;
  b := -1;   d := -12;
  a := 1.0;
  a := -1;   b := 10;
  d := a;
END PROCESS;


                                                       12
                                          Copyright 2006 – Biz/ed
Session 5

                                                                    http://www.bized.co.uk



Data Types                    1-3 Floating Point Type


It has no meaning in synthesis so it is only used for simulation.



          Named as floating or real type         -1.0E308 to 1.0E308




           They must converted to bits at synthesize time.


                                                                                    13
                                                                       Copyright 2006 – Biz/ed
Session 5

                           http://www.bized.co.uk




Floating Point Type


                      Example
                         24




                                             14
                                Copyright 2006 – Biz/ed
Session 5

                                        http://www.bized.co.uk




 Floating Point Type

entity ex_enum is
    Port ( inp1       : in STD_LOGIC;
           inp2       : in STD_LOGIC;
           outp       : out real
          );
end ex_enum;

architecture Behavioral of ex_enum is
begin
outp<= 1.5 when inp1 < inp2 else 2.5;
end Behavioral;




                                                        15
                                           Copyright 2006 – Biz/ed
Session 5

                                                                        http://www.bized.co.uk



Data Types                    1-4 Physical Type

Physical types represent measurements of some quantity
Allows to define measurements of some physical quantities such as time, length,
resistance…

Syntax
type <type_name> is range <range>
    units
       <primary_unit>;
       <secondary_unit> =
                    <integer> <primary_unit>;
         …
end units;

         <primary_unit> an identifier for the primary unit of measurement for that   type
         <secondary_unit> an integer multiple of the primary unit




                                                                                            16
                                                                             Copyright 2006 – Biz/ed
Session 5

                                                        http://www.bized.co.uk



Data Types                   1-4 Physical Types

Predefined physical types
           time type
Time is the only predefined physical type

Example
         type time is range -2147483647 to 2147483647
         units
         fs;
         ps = 1000 fs;
         ns = 1000 ps;
         us = 1000 ns;
         ms = 1000 us;
         sec = 1000 ms;
         min = 60 sec;
         hr = 60 min;
         end units;
Note
         physical types are not synthesizable
                                                                        17
                                                           Copyright 2006 – Biz/ed
Session 5

                                                          http://www.bized.co.uk



Data Types                  2-Composite Types



Composite Types
        1–Array
                   Multiple elements of the same type

        2-Record

                   Multiple elements of different types




                                                                          18
                                                             Copyright 2006 – Biz/ed
Session 5

                                                                http://www.bized.co.uk



Data Types                     2-1 Array
•Group elements of the same type

Syntax
                                                                7          21 0
Type <type_name> is array <range> of <data_type>;                                     0
Example                                                             .                 1
                                                                    .
1D array                                                            .
            type data is array (7 downto 0) of bit ;
            signal D_bus : data ;                                                     15
            D_bus <= “10101010”

2 D array
               type memory   is array (0 to 15) of std_logic_vector(7 downto 0);
               signal word   : memory ;
               word (5) <=   “10010110” ;
               word (15,4)   <= „1‟ ;

                                                                                 19
                                                                    Copyright 2006 – Biz/ed
Session 5

                                                           http://www.bized.co.uk



Data Types                 2-1 Array


type word is array (0 to 31) of std_logic;
type byte is array (7 downto 0) of std_logic;
type memory is array (0 to 15) of std_logic_vector(7 downto 0);

signal D_bus : word;
signal mem1 : memory;
variable x : byte;
variable y : std_logic;

mem1 (5) <= "10010110" ;
mem1 (15,4) <= '1' ;
y := x(5);




                                                                           20
                                                              Copyright 2006 – Biz/ed
Session 5

                                             http://www.bized.co.uk



Data Types              2-2 Record
Group elements of possibly different types
Elements are indexed via field names

Syntax
         type <type_name> is record
         identifier: type;
         identifier: type;
          …
         end record;




                                                             21
                                                Copyright 2006 – Biz/ed
Session 5

                                                             http://www.bized.co.uk



Data Types                  2-2 Record

Example           Data Packet

type packet is record
         ID          :   integer range 0 to 15 ;
          C          :   std_logic ;
         SOF         :   std_logic_vector(7 downto 0) ;
         PAYLOAD     :   std_logic_vector( 127 downto 0) ;
         CRC         :   std_logic_vector(3 downto 0) ;
         EOF         :   std_logic_vector(7 downto 0);
end record ;

signal tx_packet : packet;
tx_packet.ID <= 3 ;
tx_packet.PAYLOAD <= “1000………………..10101”;




                                                                             22
                                                                Copyright 2006 – Biz/ed
Session 5

                                                          http://www.bized.co.uk



Data Types                  3-User Defined Types

Types that are defined by default and to be defined by
the user before using, such as encoding FSM next and
present states.
Syntax:
         Type <type_name>   is (value1, value2, …)

Most often used in the encoding of FSM states.
When encoding the states of the FSM of the control unit
in a microprocessor, one can define it as follows.

Type states is (reset, fetch, decode, excute, store)
Signal P_state : states;




                                                                          23
                                                             Copyright 2006 – Biz/ed
Session 5

                                     http://www.bized.co.uk



Data Types        3-User Defined Types




                                                      24
                                         Copyright 2006 – Biz/ed
Session 5

                                                                     http://www.bized.co.uk



  Data Types                  -Data Conversion

VHDL is a strongly typed language, meaning that data objects of different types cannot be
assigned to one another without the use of a type conversion function.

If A and B are both integer variables, the assignment

         a := b + ‘1’ ;     is illegal because ‘1’ is of type bit.


For Example

         SIGNAL a,b       : IN integer;
         SIGNAL y         : OUT STD_LOGIC_VECTOR (7 DOWNTO 0);
         ...
         y <= CONV_STD_LOGIC_VECTOR ((a+b), 8); to change from integer to std_logic

         or a<=conv_integer(y); to change from std_logic to integer


                                                                                     25
                                                                        Copyright 2006 – Biz/ed
Session 5

                 http://www.bized.co.uk




            Memories




                                 26
                    Copyright 2006 – Biz/ed
Session 5

                                                              http://www.bized.co.uk



Data Types                    -How to make RAM
first you have to think about entity (I/p &o/P)

1-clock for synchronization

2-write enable to control writing the data on memory , RAM<= data_in.

3-read enable to control read date from memory ,data_out <= Ram.

4 address to control which data you want to read or write .

5- input data and output data



     the question is do we have to but reset as input ???




                                                                              27
                                                                 Copyright 2006 – Biz/ed
Session 5

                                            http://www.bized.co.uk




• RAM

 with separate read and write ports




                                      lab
                                       9




                                                            28
                                               Copyright 2006 – Biz/ed
Session 5

                                         http://www.bized.co.uk




• RAM

   with internal address control




                                   lab
                                    10




                                                         29
                                            Copyright 2006 – Biz/ed
Session 5

                                      http://www.bized.co.uk




• ROM

  Make Synchronous 16 X 8 ROM




                                lab
                                 11




                                                      30
                                         Copyright 2006 – Biz/ed
Session 2

                  http://www.bized.co.uk




Mini Project-2




                                  31
                     Copyright 2006 – Biz/ed
Session 5

                                            http://www.bized.co.uk


Why Scrambler

1) One purpose of scrambling is to
reduce the length of strings of zeros or
ones in a transmitted signal, since a
long string of 0s or 1s may cause
transmission synchronization problems,
i.e. cause the clock regeneration at the
receiver more difficult.


2) Also for making the transmitted signal
more secured.



                                                            32
                                               Copyright 2006 – Biz/ed
Session 5

                                               http://www.bized.co.uk


Scrambler



    A(i)     Scrambler       B(i)



               B(i)=[A(i)+c(i)]mod2

A(i) is the input to the scrambler.
B(i) is the scrambled code word (the output of the scrambler)
c(i) is the output of the Pseudo-random sequence generation


                                                               33
                                                  Copyright 2006 – Biz/ed
Session 5

                                             http://www.bized.co.uk


Scrambler

Pseudo-random sequence generation




As we said before, C(i) will be Xored with the input of the
scrambler b(i) generating the scrambled output B(i).
B(i)=[b(i)+c(i)]mod2
                                                             34
                                                Copyright 2006 – Biz/ed
Session 5

                             http://www.bized.co.uk




Questions
                 Session-5




                                             35
                                Copyright 2006 – Biz/ed
Session 5

                                                                                                      http://www.bized.co.uk

Take Your Notes
              Print the slides and take your notes here

---------------------------------------------------------------------------------------------------------------------------------------------
---------------------------------------------------------------------------------------------------------------------------------------------
---------------------------------------------------------------------------------------------------------------------------------------------
---------------------------------------------------------------------------------------------------------------------------------------------
---------------------------------------------------------------------------------------------------------------------------------------------
---------------------------------------------------------------------------------------------------------------------------------------------
---------------------------------------------------------------------------------------------------------------------------------------------
---------------------------------------------------------------------------------------------------------------------------------------------
---------------------------------------------------------------------------------------------------------------------------------------------
---------------------------------------------------------------------------------------------------------------------------------------------
---------------------------------------------------------------------------------------------------------------------------------------------
---------------------------------------------------------------------------------------------------------------------------------------------
---------------------------------------------------------------------------------------------------------------------------------------------
---------------------------------------------------------------------------------------------------------------------------------------------
---------------------------------------------------------------------------------------------------------------------------------------------
---------------------------------------------------------------------------------------------------------------------------------------------
---------------------------------------------------------------------------------------------------------------------------------------------
---------------------------------------------------------------------------------------------------------------------------------------------
---------------------------------------------------------------------------------------------------------------------------------------------
---------------------------------------------------------------------------------------------------------------------------------------------
---------------------------------------------------------------------------------------------------------------------------------------------
---------------------------------------------------------------------------------------------------------------------------------------------
---------------------------------------------------------------------------------------------------------------------------------------------
---------------------------------------------------------------------------------------------------------------------------------------------
---------------------------------------------------------------------------------------------------------------------------------------------
                                                                                                                              36
                                                                                                           Copyright 2006 – Biz/ed
Session 5

                       http://www.bized.co.uk




See You Next Session




                                       37
                          Copyright 2006 – Biz/ed

More Related Content

PDF
Start group tutorial [2]
PDF
Session eight
PDF
Intrduction to the course
PDF
Session one
PDF
Session two
PDF
Session three
PDF
Session nine
PDF
Session four
Start group tutorial [2]
Session eight
Intrduction to the course
Session one
Session two
Session three
Session nine
Session four

Similar to Session five (20)

PPTX
Session 05 v.3
PDF
June 07 P3
PDF
June 10 P32
PPTX
Hema wt (1)
PPTX
Data types and Operators
PDF
Nov 03 P3
PDF
June 10 P31
PPTX
Data types vbnet
PDF
Nov 09 P31
PPTX
Data types vbnet
PPTX
Data types vbnet
PDF
June 10 P33
PPT
Sql server lab_2
PPT
Data type2 c
PPT
Visual basic intoduction
PPTX
c++ computer programming language datatypes ,operators,Lecture 03 04
PPT
LIS3353 SP 12 Week 2a
PDF
Scope, binding, papameter passing techniques
PPT
Unit 2 Principles of Programming Languages
PDF
Data Structures and Algorithms
Session 05 v.3
June 07 P3
June 10 P32
Hema wt (1)
Data types and Operators
Nov 03 P3
June 10 P31
Data types vbnet
Nov 09 P31
Data types vbnet
Data types vbnet
June 10 P33
Sql server lab_2
Data type2 c
Visual basic intoduction
c++ computer programming language datatypes ,operators,Lecture 03 04
LIS3353 SP 12 Week 2a
Scope, binding, papameter passing techniques
Unit 2 Principles of Programming Languages
Data Structures and Algorithms
Ad

Recently uploaded (20)

PDF
Encapsulation_ Review paper, used for researhc scholars
PDF
7 ChatGPT Prompts to Help You Define Your Ideal Customer Profile.pdf
PPTX
Programs and apps: productivity, graphics, security and other tools
PDF
gpt5_lecture_notes_comprehensive_20250812015547.pdf
PDF
1 - Historical Antecedents, Social Consideration.pdf
PDF
ENT215_Completing-a-large-scale-migration-and-modernization-with-AWS.pdf
PDF
August Patch Tuesday
PPTX
TechTalks-8-2019-Service-Management-ITIL-Refresh-ITIL-4-Framework-Supports-Ou...
PDF
Agricultural_Statistics_at_a_Glance_2022_0.pdf
PPTX
OMC Textile Division Presentation 2021.pptx
PDF
Building Integrated photovoltaic BIPV_UPV.pdf
PDF
Profit Center Accounting in SAP S/4HANA, S4F28 Col11
PDF
Mushroom cultivation and it's methods.pdf
PDF
Hybrid model detection and classification of lung cancer
PPTX
A Presentation on Touch Screen Technology
PDF
project resource management chapter-09.pdf
PPTX
A Presentation on Artificial Intelligence
PDF
Zenith AI: Advanced Artificial Intelligence
PDF
NewMind AI Weekly Chronicles - August'25-Week II
PDF
Encapsulation theory and applications.pdf
Encapsulation_ Review paper, used for researhc scholars
7 ChatGPT Prompts to Help You Define Your Ideal Customer Profile.pdf
Programs and apps: productivity, graphics, security and other tools
gpt5_lecture_notes_comprehensive_20250812015547.pdf
1 - Historical Antecedents, Social Consideration.pdf
ENT215_Completing-a-large-scale-migration-and-modernization-with-AWS.pdf
August Patch Tuesday
TechTalks-8-2019-Service-Management-ITIL-Refresh-ITIL-4-Framework-Supports-Ou...
Agricultural_Statistics_at_a_Glance_2022_0.pdf
OMC Textile Division Presentation 2021.pptx
Building Integrated photovoltaic BIPV_UPV.pdf
Profit Center Accounting in SAP S/4HANA, S4F28 Col11
Mushroom cultivation and it's methods.pdf
Hybrid model detection and classification of lung cancer
A Presentation on Touch Screen Technology
project resource management chapter-09.pdf
A Presentation on Artificial Intelligence
Zenith AI: Advanced Artificial Intelligence
NewMind AI Weekly Chronicles - August'25-Week II
Encapsulation theory and applications.pdf
Ad

Session five

  • 1. http://www.bized.co.uk Session 5 Prepared by Alaa Salah Shehata Mahmoud A. M. Abd El Latif Mohamed Mohamed Tala’t Mohamed Salah Mahmoud Version 02 – October 2011 Copyright 2006 – Biz/ed
  • 2. http://www.bized.co.uk 5 -Data Types Contents -Scalar -Composite -User defined -LABs -Memory units 2 Copyright 2006 – Biz/ed
  • 3. Session 5 http://www.bized.co.uk Data Types 3 Copyright 2006 – Biz/ed
  • 4. Session 5 http://www.bized.co.uk Data Types -Type declaration is made inside architecture declaration, entity declaration, process declaration -VHDL is a strongly typed language, meaning that data objects of different types cannot be assigned to one another without the use of a type conversion function. Data Types can be classified into: 1–Scalar types Refers to all types whose objects have a single value at any time instant. 2–Composite types Refers to types that have a regular structure consisting of elements of the same type such as array or elements of different types such as record. 3–User defined types Types that are defined by default and to be defined by the user before using. 4 Copyright 2006 – Biz/ed
  • 5. Session 5 http://www.bized.co.uk Data Types 1-Scalar Types -Refers to all types whose objects have a single value at any time instant. Scalar Types 1-Enumerated types a–Bit b–Boolean c–Character d-String 2–Integer 3–Floating Point 4–Physical types 5 Copyright 2006 – Biz/ed
  • 6. Session 5 http://www.bized.co.uk Data Types 1-1 Enumerated Types -Specifies list of possible values a-Bit Type bit defines two standard logical values (‘0’ , ‘1’) bit ( „0‟ , „1‟ ) ; b-Boolean Type Boolean is used in the conditional operations boolean ( false , true ) ; Logical functions such as equality (=) and comparison (<) functions return a BOOLEAN value. Example: Evaluate the following relational expression: ”1011” < ”110”. Comment! The expression evaluates to true. 6 Copyright 2006 – Biz/ed
  • 7. Session 5 http://www.bized.co.uk Data Types 1-1 Enumerated Types c-Character covers all characters character ( „@‟,‟#‟, …. „A‟ , „B‟, ...) ; The CHARACTER data type enumerates the ASCII character set. D- string if we need to write string of characters we use this key word 7 Copyright 2006 – Biz/ed
  • 8. Session 5 http://www.bized.co.uk Enumerated Types Example 22 8 Copyright 2006 – Biz/ed
  • 9. Session 5 http://www.bized.co.uk Example 1-1 Enumerated Types entity ex_enum is Port ( inp1 : in STD_LOGIC; inp2 : in STD_LOGIC; outp1 : out Boolean; outp2 : out Character; outp3 : out string(1 to 5) ); end ex_enum; architecture Behavioral of ex_enum is begin outp1 <= true when inp1 < inp2 else false ; outp2 <= „t‟ when inp1 < inp2 else „f‟ ; outp3 <= “equal” when inp1=inp2 else “notEQ”; end Behavioral; 9 Copyright 2006 – Biz/ed
  • 10. Session 5 http://www.bized.co.uk Data Types 1-2 Integer Type integer range -2147483648 to 2147483648 ; Example Signal counter : integer range 0 to 15 ; Note The implementation of the type integer in the synthesis and depends on the range specified by the user. 10 Copyright 2006 – Biz/ed
  • 11. Session 5 http://www.bized.co.uk Integer Type Example 23 11 Copyright 2006 – Biz/ed
  • 12. Session 5 http://www.bized.co.uk integer Types PROCESS (X) variable a: integer; variable b: integer range 0 to 15; type int is range -10 to 10; variable d: int; BEGIN a := 1; b := -1; d := -12; a := 1.0; a := -1; b := 10; d := a; END PROCESS; 12 Copyright 2006 – Biz/ed
  • 13. Session 5 http://www.bized.co.uk Data Types 1-3 Floating Point Type It has no meaning in synthesis so it is only used for simulation. Named as floating or real type -1.0E308 to 1.0E308 They must converted to bits at synthesize time. 13 Copyright 2006 – Biz/ed
  • 14. Session 5 http://www.bized.co.uk Floating Point Type Example 24 14 Copyright 2006 – Biz/ed
  • 15. Session 5 http://www.bized.co.uk Floating Point Type entity ex_enum is Port ( inp1 : in STD_LOGIC; inp2 : in STD_LOGIC; outp : out real ); end ex_enum; architecture Behavioral of ex_enum is begin outp<= 1.5 when inp1 < inp2 else 2.5; end Behavioral; 15 Copyright 2006 – Biz/ed
  • 16. Session 5 http://www.bized.co.uk Data Types 1-4 Physical Type Physical types represent measurements of some quantity Allows to define measurements of some physical quantities such as time, length, resistance… Syntax type <type_name> is range <range> units <primary_unit>; <secondary_unit> = <integer> <primary_unit>; … end units; <primary_unit> an identifier for the primary unit of measurement for that type <secondary_unit> an integer multiple of the primary unit 16 Copyright 2006 – Biz/ed
  • 17. Session 5 http://www.bized.co.uk Data Types 1-4 Physical Types Predefined physical types time type Time is the only predefined physical type Example type time is range -2147483647 to 2147483647 units fs; ps = 1000 fs; ns = 1000 ps; us = 1000 ns; ms = 1000 us; sec = 1000 ms; min = 60 sec; hr = 60 min; end units; Note physical types are not synthesizable 17 Copyright 2006 – Biz/ed
  • 18. Session 5 http://www.bized.co.uk Data Types 2-Composite Types Composite Types 1–Array Multiple elements of the same type 2-Record Multiple elements of different types 18 Copyright 2006 – Biz/ed
  • 19. Session 5 http://www.bized.co.uk Data Types 2-1 Array •Group elements of the same type Syntax 7 21 0 Type <type_name> is array <range> of <data_type>; 0 Example . 1 . 1D array . type data is array (7 downto 0) of bit ; signal D_bus : data ; 15 D_bus <= “10101010” 2 D array type memory is array (0 to 15) of std_logic_vector(7 downto 0); signal word : memory ; word (5) <= “10010110” ; word (15,4) <= „1‟ ; 19 Copyright 2006 – Biz/ed
  • 20. Session 5 http://www.bized.co.uk Data Types 2-1 Array type word is array (0 to 31) of std_logic; type byte is array (7 downto 0) of std_logic; type memory is array (0 to 15) of std_logic_vector(7 downto 0); signal D_bus : word; signal mem1 : memory; variable x : byte; variable y : std_logic; mem1 (5) <= "10010110" ; mem1 (15,4) <= '1' ; y := x(5); 20 Copyright 2006 – Biz/ed
  • 21. Session 5 http://www.bized.co.uk Data Types 2-2 Record Group elements of possibly different types Elements are indexed via field names Syntax type <type_name> is record identifier: type; identifier: type; … end record; 21 Copyright 2006 – Biz/ed
  • 22. Session 5 http://www.bized.co.uk Data Types 2-2 Record Example Data Packet type packet is record ID : integer range 0 to 15 ; C : std_logic ; SOF : std_logic_vector(7 downto 0) ; PAYLOAD : std_logic_vector( 127 downto 0) ; CRC : std_logic_vector(3 downto 0) ; EOF : std_logic_vector(7 downto 0); end record ; signal tx_packet : packet; tx_packet.ID <= 3 ; tx_packet.PAYLOAD <= “1000………………..10101”; 22 Copyright 2006 – Biz/ed
  • 23. Session 5 http://www.bized.co.uk Data Types 3-User Defined Types Types that are defined by default and to be defined by the user before using, such as encoding FSM next and present states. Syntax: Type <type_name> is (value1, value2, …) Most often used in the encoding of FSM states. When encoding the states of the FSM of the control unit in a microprocessor, one can define it as follows. Type states is (reset, fetch, decode, excute, store) Signal P_state : states; 23 Copyright 2006 – Biz/ed
  • 24. Session 5 http://www.bized.co.uk Data Types 3-User Defined Types 24 Copyright 2006 – Biz/ed
  • 25. Session 5 http://www.bized.co.uk Data Types -Data Conversion VHDL is a strongly typed language, meaning that data objects of different types cannot be assigned to one another without the use of a type conversion function. If A and B are both integer variables, the assignment a := b + ‘1’ ; is illegal because ‘1’ is of type bit. For Example SIGNAL a,b : IN integer; SIGNAL y : OUT STD_LOGIC_VECTOR (7 DOWNTO 0); ... y <= CONV_STD_LOGIC_VECTOR ((a+b), 8); to change from integer to std_logic or a<=conv_integer(y); to change from std_logic to integer 25 Copyright 2006 – Biz/ed
  • 26. Session 5 http://www.bized.co.uk Memories 26 Copyright 2006 – Biz/ed
  • 27. Session 5 http://www.bized.co.uk Data Types -How to make RAM first you have to think about entity (I/p &o/P) 1-clock for synchronization 2-write enable to control writing the data on memory , RAM<= data_in. 3-read enable to control read date from memory ,data_out <= Ram. 4 address to control which data you want to read or write . 5- input data and output data the question is do we have to but reset as input ??? 27 Copyright 2006 – Biz/ed
  • 28. Session 5 http://www.bized.co.uk • RAM with separate read and write ports lab 9 28 Copyright 2006 – Biz/ed
  • 29. Session 5 http://www.bized.co.uk • RAM with internal address control lab 10 29 Copyright 2006 – Biz/ed
  • 30. Session 5 http://www.bized.co.uk • ROM Make Synchronous 16 X 8 ROM lab 11 30 Copyright 2006 – Biz/ed
  • 31. Session 2 http://www.bized.co.uk Mini Project-2 31 Copyright 2006 – Biz/ed
  • 32. Session 5 http://www.bized.co.uk Why Scrambler 1) One purpose of scrambling is to reduce the length of strings of zeros or ones in a transmitted signal, since a long string of 0s or 1s may cause transmission synchronization problems, i.e. cause the clock regeneration at the receiver more difficult. 2) Also for making the transmitted signal more secured. 32 Copyright 2006 – Biz/ed
  • 33. Session 5 http://www.bized.co.uk Scrambler A(i) Scrambler B(i) B(i)=[A(i)+c(i)]mod2 A(i) is the input to the scrambler. B(i) is the scrambled code word (the output of the scrambler) c(i) is the output of the Pseudo-random sequence generation 33 Copyright 2006 – Biz/ed
  • 34. Session 5 http://www.bized.co.uk Scrambler Pseudo-random sequence generation As we said before, C(i) will be Xored with the input of the scrambler b(i) generating the scrambled output B(i). B(i)=[b(i)+c(i)]mod2 34 Copyright 2006 – Biz/ed
  • 35. Session 5 http://www.bized.co.uk Questions Session-5 35 Copyright 2006 – Biz/ed
  • 36. Session 5 http://www.bized.co.uk Take Your Notes Print the slides and take your notes here --------------------------------------------------------------------------------------------------------------------------------------------- --------------------------------------------------------------------------------------------------------------------------------------------- --------------------------------------------------------------------------------------------------------------------------------------------- --------------------------------------------------------------------------------------------------------------------------------------------- --------------------------------------------------------------------------------------------------------------------------------------------- --------------------------------------------------------------------------------------------------------------------------------------------- --------------------------------------------------------------------------------------------------------------------------------------------- --------------------------------------------------------------------------------------------------------------------------------------------- --------------------------------------------------------------------------------------------------------------------------------------------- --------------------------------------------------------------------------------------------------------------------------------------------- --------------------------------------------------------------------------------------------------------------------------------------------- --------------------------------------------------------------------------------------------------------------------------------------------- --------------------------------------------------------------------------------------------------------------------------------------------- --------------------------------------------------------------------------------------------------------------------------------------------- --------------------------------------------------------------------------------------------------------------------------------------------- --------------------------------------------------------------------------------------------------------------------------------------------- --------------------------------------------------------------------------------------------------------------------------------------------- --------------------------------------------------------------------------------------------------------------------------------------------- --------------------------------------------------------------------------------------------------------------------------------------------- --------------------------------------------------------------------------------------------------------------------------------------------- --------------------------------------------------------------------------------------------------------------------------------------------- --------------------------------------------------------------------------------------------------------------------------------------------- --------------------------------------------------------------------------------------------------------------------------------------------- --------------------------------------------------------------------------------------------------------------------------------------------- --------------------------------------------------------------------------------------------------------------------------------------------- 36 Copyright 2006 – Biz/ed
  • 37. Session 5 http://www.bized.co.uk See You Next Session 37 Copyright 2006 – Biz/ed