X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;f=cpu%2Fsrc%2Fwriteback_stage.vhd;h=63543bcd4427c3c28d5d79ade1aae4a81644c652;hb=1968f329b10681b760faec9369aa893cd2af8d44;hp=9ec598638530aa97708967dca32b9ac78210de10;hpb=2327979859866316a3146dba133b722e72bedfb1;p=calu.git diff --git a/cpu/src/writeback_stage.vhd b/cpu/src/writeback_stage.vhd index 9ec5986..63543bc 100644 --- a/cpu/src/writeback_stage.vhd +++ b/cpu/src/writeback_stage.vhd @@ -1,3 +1,24 @@ +-- `Deep Thought', a softcore CPU implemented on a FPGA +-- +-- Copyright (C) 2010 Markus Hofstaetter +-- Copyright (C) 2010 Martin Perner +-- Copyright (C) 2010 Stefan Rebernig +-- Copyright (C) 2010 Manfred Schwarz +-- Copyright (C) 2010 Bernhard Urban +-- +-- This program is free software: you can redistribute it and/or modify +-- it under the terms of the GNU General Public License as published by +-- the Free Software Foundation, either version 3 of the License, or +-- (at your option) any later version. +-- +-- This program is distributed in the hope that it will be useful, +-- but WITHOUT ANY WARRANTY; without even the implied warranty of +-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +-- GNU General Public License for more details. +-- +-- You should have received a copy of the GNU General Public License +-- along with this program. If not, see . + library IEEE; use IEEE.std_logic_1164.all; use IEEE.numeric_std.all; @@ -11,7 +32,8 @@ entity writeback_stage is RESET_VALUE : std_logic; -- active logic value LOGIC_ACT : std_logic; - FPGATYPE : string + FPGATYPE : string; + CLK_BAUD : integer ); port( --System inputs @@ -43,10 +65,10 @@ entity writeback_stage is im_addr : out gp_register_t; im_data : out gp_register_t; - sseg0 : out std_logic_vector(0 to 6); - sseg1 : out std_logic_vector(0 to 6); - sseg2 : out std_logic_vector(0 to 6); - sseg3 : out std_logic_vector(0 to 6); + --sseg0 : out std_logic_vector(0 to 6); + --sseg1 : out std_logic_vector(0 to 6); + --sseg2 : out std_logic_vector(0 to 6); + --sseg3 : out std_logic_vector(0 to 6); int_req : out interrupt_t