OpenCores
URL https://opencores.org/ocsvn/thor/thor/trunk

Subversion Repositories thor

[/] [thor/] [trunk/] [rtl/] [verilog/] [Thor_alu.v] - Diff between revs 13 and 18

Go to most recent revision | Show entire file | Details | Blame | View Log

Rev 13 Rev 18
Line 286... Line 286...
    end
    end
    else
    else
        o <= 64'hDEADDEADDEADDEAD;
        o <= 64'hDEADDEADDEADDEAD;
 */
 */
 
 
`ADDI,`ADDUI,`ADDUIS:
`ADDI,`ADDUI,`ADDUIS,`LEA:
                o <= alu_argA + alu_argI;
                o <= alu_argA + alu_argI;
`SUBI,`SUBUI:
`SUBI,`SUBUI:
                o <= alu_argA - alu_argI;
                o <= alu_argA - alu_argI;
`ANDI:                  o <= alu_argA & alu_argI;
`ANDI:                  o <= alu_argA & alu_argI;
`ORI:                   o <= alu_argA | alu_argI;
`ORI:                   o <= alu_argA | alu_argI;

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.