Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Martin Pepin
sysdig
Commits
c0a6b40f
Commit
c0a6b40f
authored
Jan 14, 2017
by
Noémie Fong
Browse files
fix mux tree
parent
d93a7b80
Changes
1
Hide whitespace changes
Inline
Side-by-side
cpu/src/alu/main.mj
View file @
c0a6b40f
...
...
@@ -2,15 +2,13 @@ require registers
require ALU/utils
(* The ALU implementation
TODO
shamt et constantes sont envoyés par le multiplexeur
*)
ALU(input1:[32], input2:[32], alu_control:[4], alu_op:[3], use_shamt,
shamt:[5], constant:[16]) = (alu_zero, result:[32]) where
ALU(input1:[32], input2:[32], alu_control:[4], alu_op:[3], use_shamt) = (alu_zero, result:[32]) where
R_format = equal_zero_n<3>(alu_op);
result =
mux(R_format,
mux(alu_control[0], (* if 1 then shift or HI/Lo, else logical or artih*)
mux(alu_control[2], (* if 1 then HI/LO, else logical shift *)
mux(alu_control[3], (* Case HI/LO *)
...
...
@@ -18,18 +16,11 @@ ALU(input1:[32], input2:[32], alu_control:[4], alu_op:[3], use_shamt,
read_LO()
), (*TODO*)
mux(alu_control[1], (* Case logical shift *) (*TODO : optimiser use_shamt ?*)
mux(use_shamt,
shift_by_shamt_ALU(input1, shamt, 1, alu_control[3]),
shift:_by_reg_ALU(input1, input2, 1, alu_control[3])
),
mux(use_shamt, (* Case logical shift left *)
shift_by_shamt_ALU(input1, shamt, 0, 0),
shift_by_reg_ALU(input1, input2, 0, 0)
mux(alu_control[1], (* Case logical shift *)
shift_by_reg_ALU(input1, input2, 1, alu_control[3]),
shift_by_reg_ALU(input1, input2, 0, 0)
)
)
),
),
mux(alu_control[1], (*if 1 then logical else arihtmetical *)
mux(alu_control[2],
...
...
@@ -54,10 +45,6 @@ ALU(input1:[32], input2:[32], alu_control:[4], alu_op:[3], use_shamt,
add_ALU(input1, input2, alu_control[3]),
)
)
),
(*TODO : opérations pas format R *)
zero_n<32>()
);
);
alu_zero = equal_zero_n<32>(result);
end where
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment