pipe2
[calu.git] / cpu / src / exec_op / xor_op_b.vhd
index 62c7db8e071a7ccbe65d391104db5ab156641e40..8d4089c6e26a7c3a01e34ed39fbe8e524114ebc7 100755 (executable)
@@ -1,22 +1,22 @@
-library IEEE;\r
-use IEEE.std_logic_1164.all;\r
-use IEEE.numeric_std.all;\r
-\r
-use work.common_pkg.all;\r
-use work.alu_pkg.all;\r
-\r
-architecture xor_op of exec_op is\r
-begin\r
-\r
-calc: process(left_operand, right_operand, alu_state)\r
-       variable alu_result_v : alu_result_rec;\r
-       \r
-begin\r
-               alu_result_v := alu_state;\r
-               \r
-               alu_result_v.result := left_operand xor right_operand;\r
-               \r
-               alu_result <= alu_result_v;\r
-end process; \r
-\r
-end architecture xor_op;\r
+library IEEE;
+use IEEE.std_logic_1164.all;
+use IEEE.numeric_std.all;
+
+use work.common_pkg.all;
+use work.alu_pkg.all;
+
+architecture xor_op of exec_op is
+begin
+
+calc: process(left_operand, right_operand, alu_state)
+       variable alu_result_v : alu_result_rec;
+       
+begin
+               alu_result_v := alu_state;
+               
+               alu_result_v.result := left_operand xor right_operand;
+               
+               alu_result <= alu_result_v;
+end process; 
+
+end architecture xor_op;