fixed decoding jump instructions
Stefan Schuermans

Stefan Schuermans commited on 2012-02-10 22:45:29
Showing 1 changed files, with 1 additions and 1 deletions.

... ...
@@ -41,7 +41,7 @@ BEGIN
41 41
         CASE s_opcode IS
42 42
             WHEN "000000" => s_enc_type <= enc_reg;
43 43
             WHEN "000010" => s_enc_type <= enc_jmp;
44
-            WHEN "011010" => s_enc_type <= enc_jmp;
44
+            WHEN "000011" => s_enc_type <= enc_jmp;
45 45
             WHEN OTHERS   => s_enc_type <= enc_imm;
46 46
         END CASE;
47 47
     END PROCESS p_enc_type;
48 48