URL
https://opencores.org/ocsvn/opencpu32/opencpu32/trunk
Go to most recent revision |
Show entire file |
Details |
Blame |
View Log
Rev 9 |
Rev 10 |
Line 21... |
Line 21... |
sel : in aluOps); --! Select operation
|
sel : in aluOps); --! Select operation
|
end Alu;
|
end Alu;
|
|
|
--! @brief Arithmetic logic unit, refer to this page for more information http://en.wikipedia.org/wiki/Arithmetic_logic_unit
|
--! @brief Arithmetic logic unit, refer to this page for more information http://en.wikipedia.org/wiki/Arithmetic_logic_unit
|
--! @details This circuit will be excited by the control unit to perfom some arithimetic, or logic operation (Depending on the opcode selected)
|
--! @details This circuit will be excited by the control unit to perfom some arithimetic, or logic operation (Depending on the opcode selected)
|
--! You can see some samples on the Internet: http://www.vlsibank.com/sessionspage.asp?titl_id=12222
|
--! \n You can see some samples on the Internet: http://www.vlsibank.com/sessionspage.asp?titl_id=12222
|
architecture Behavioral of Alu is
|
architecture Behavioral of Alu is
|
|
|
begin
|
begin
|
--! Behavior description of combinational circuit (Can not infer any FF(Flip flop)) of the Alu
|
--! Behavior description of combinational circuit (Can not infer any FF(Flip flop)) of the Alu
|
process (A,B,sel) is
|
process (A,B,sel) is
|
© copyright 1999-2024
OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.