OpenCores
URL https://opencores.org/ocsvn/fpuvhdl/fpuvhdl/trunk

Subversion Repositories fpuvhdl

[/] [fpuvhdl/] [trunk/] [fpuvhdl/] [adder/] [fpselcomplement_fpselcomplement.vhd] - Blame information for rev 5

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 3 gmarcus
--
2
-- VHDL Architecture HAVOC.FPselComplement.FPselComplement
3
--
4
-- Created:
5
--          by - Guillermo
6
--          at - ITESM, 13:02:32 07/17/03
7
--
8
-- Generated by Mentor Graphics' HDL Designer(TM) 2002.1b (Build 7)
9
--
10
-- hds interface_start
11
LIBRARY ieee;
12
USE ieee.std_logic_1164.all;
13
USE ieee.std_logic_arith.all;
14
USE ieee.std_logic_unsigned.all;
15
 
16
 
17
ENTITY FPselComplement IS
18
   GENERIC(
19
      SIG_width : integer := 28
20
   );
21
   PORT(
22
      SIG_in  : IN     std_logic_vector (SIG_width DOWNTO 0);
23
      EXP_in  : IN     std_logic_vector (7 DOWNTO 0);
24
      SIG_out : OUT    std_logic_vector (SIG_width-1 DOWNTO 0);
25
      EXP_out : OUT    std_logic_vector (7 DOWNTO 0)
26
   );
27
 
28
-- Declarations
29
 
30
END FPselComplement ;
31
 
32
 
33
-- hds interface_end
34
ARCHITECTURE FPselComplement OF FPselComplement IS
35
BEGIN
36
 
37
        EXP_out <= EXP_in;
38
 
39
        PROCESS(SIG_in)
40
        BEGIN
41
                IF (SIG_in(SIG_width) = '1') THEN
42
                        SIG_out <= (NOT SIG_in(SIG_width-1 DOWNTO 0) + 1);
43
                ELSE
44
                        SIG_out <= SIG_in(SIG_width-1 DOWNTO 0);
45
                END IF;
46
        END PROCESS;
47
 
48
END FPselComplement;
49
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.