gpm module and exec first buggy version.
[calu.git] / cpu / src / execute_stage.vhd
index 925c579ff6526fafbf2cefb44c3758193057aaa0..9ca96bcf2e9921f9386e4e34c4993b05d3025937 100644 (file)
@@ -8,14 +8,27 @@ entity execute_stage is
                        -- active reset value
                        RESET_VALUE : std_logic;
                        -- active logic value
-                       LOGIC_ACT : std_logic;
+                       --LOGIC_ACT : std_logic;
                        
                        );
        port(
                --System inputs
                        clk : in std_logic;
                        reset : in std_logic;
-                        dec_instr : in dec_op
+                        dec_instr : in dec_op;
+
+                --System output
+                        result : out gp_register_t;--reg
+                        result_addr : out gp_addr_t;--reg
+                        addr : out word_t; --memaddr
+                        data : out gp_register_t; --mem data --ureg
+                        alu_jump : out std_logic;--reg
+                        brpr  : out std_logic;  --reg
+                        wr_en : out std_logic;--regop --reg
+                        dmem  : out std_logic;--memop
+                        dmem_wr_en : out std_logic;
+                        hword  : out std_logic;
+                        byte_s : out std_logic
                );
                
 end execute_stage;