kleine Ă„nderungen
[calu.git] / cpu / src / core_top.vhd
index 8892f758df4bf27b9627c3b61049770f6af59cbe..58a2377856a52be7d5d68c1ca11ea2a69fbfc1dd 100644 (file)
@@ -11,7 +11,9 @@ entity core_top is
                --System input pins
                        sys_clk : in std_logic;
                        sys_res : in std_logic;
-                       result : out gp_register_t
+                       result : out gp_register_t;
+                       jump_result : out instruction_addr_t;
+                       reg_wr_data : out gp_register_t
                        
                );
 
@@ -123,4 +125,7 @@ begin
        result <= result_pin;
        nop_pin <= (alu_jump_bit_pin xor brpr_pin);
 
+       jump_result <= jump_result_pin;
+
+       reg_wr_data <= reg_wr_data_pin;
 end behav;