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

Subversion Repositories xucpu

[/] [xucpu/] [trunk/] [VHDL/] [rtl_alu/] [boole.vhdl] - Blame information for rev 2

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 2 lcdsgmtr
-- Copyright 2015, Jürgen Defurne
2
--
3
-- This file is part of the Experimental Unstable CPU System.
4
--
5
-- The Experimental Unstable CPU System Is free software: you can redistribute
6
-- it and/or modify it under the terms of the GNU Lesser General Public License
7
-- as published by the Free Software Foundation, either version 3 of the
8
-- License, or (at your option) any later version.
9
--
10
-- The Experimental Unstable CPU System is distributed in the hope that it will
11
-- be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
12
-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser
13
-- General Public License for more details.
14
--
15
-- You should have received a copy of the GNU Lesser General Public License
16
-- along with Experimental Unstable CPU System. If not, see
17
-- http://www.gnu.org/licenses/lgpl.txt.
18
 
19
 
20
LIBRARY IEEE;
21
USE IEEE.STD_LOGIC_1164.ALL;
22
USE IEEE.numeric_std.ALL;
23
 
24
ENTITY boole IS
25
 
26
  PORT (
27
    A   : IN  STD_LOGIC_VECTOR(15 DOWNTO 0);
28
    B   : IN  STD_LOGIC_VECTOR(15 DOWNTO 0);
29
    X   : OUT STD_LOGIC_VECTOR(15 DOWNTO 0);
30
    SEL : IN  STD_LOGIC_VECTOR(3 DOWNTO 0));
31
 
32
END boole;
33
 
34
ARCHITECTURE dataflow OF boole IS
35
 
36
  SIGNAL product : STD_LOGIC_VECTOR(31 DOWNTO 0);
37
 
38
BEGIN  -- dataflow
39
 
40
  product <= STD_LOGIC_VECTOR(UNSIGNED(A) * UNSIGNED(B));
41
 
42
  WITH SEL SELECT
43
    X <=
44
    A        WHEN "0000",
45
    NOT A    WHEN "0001",
46
    B        WHEN "0010",
47
    NOT B    WHEN "0011",
48
    A AND B  WHEN "0100",
49
    A OR B   WHEN "0101",
50
    A NAND B WHEN "0110",
51
    A NOR B  WHEN "0111",
52
    A XOR B  WHEN "1000",
53
    A XNOR B WHEN "1001",
54
    STD_LOGIC_VECTOR(unsigned(A) + unsigned(B)) WHEN "1010",
55
    STD_LOGIC_VECTOR(unsigned(A) - unsigned(B)) WHEN "1011",
56
    product(15 DOWNTO 0) WHEN "1100",
57
    product(31 DOWNTO 16) WHEN "1101",
58
    A(0) & A(15 DOWNTO 1) WHEN "1110",
59
    A(14 DOWNTO 0) & A(15) WHEN "1111";
60
 
61
END dataflow;

powered by: WebSVN 2.1.0

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