uart: blinkt zwar nur am led aber des is schon net schlecht :D
[calu.git] / cpu / src / core_top.vhd
index 9e0c9967426cb2c39b1c81a74f62ab8be9175553..fdd760f1b13e1c6a712eeaaf362d4a433030ec91 100644 (file)
@@ -10,6 +10,7 @@ entity core_top is
 
        port(
                --System input pins
+                  sys_res : in std_logic;
                        sys_clk : in std_logic;
 --                     result : out gp_register_t;
 --                     reg_wr_data : out gp_register_t
@@ -22,7 +23,6 @@ end core_top;
 architecture behav of core_top is
 
                signal jump_result : instruction_addr_t;
-               signal sys_res : std_logic;
                signal jump_result_pin : instruction_addr_t;
                signal prediction_result_pin : instruction_addr_t;
                signal branch_prediction_bit_pin : std_logic;
@@ -137,7 +137,7 @@ begin
        nop_pin <= (alu_jump_bit_pin); -- xor brpr_pin);
 
        jump_result <= prog_cnt_pin; --jump_result_pin;
-       sys_res <= '1';
+--     sys_res <= '1';
 
 --     reg_wr_data <= reg_wr_data_pin;
 end behav;