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

Subversion Repositories instruction_list_pipelined_processor_with_peripherals

[/] [instruction_list_pipelined_processor_with_peripherals/] [trunk/] [hdl/] [op2Mux.v] - Diff between revs 5 and 9

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

Rev 5 Rev 9
Line 9... Line 9...
        input inputReadOut, outputReadOut, bitOut;
        input inputReadOut, outputReadOut, bitOut;
        input [7:0] byteOut;
        input [7:0] byteOut;
 
 
        output [7:0] op2MuxOut;
        output [7:0] op2MuxOut;
 
 
        reg [7:0] op2MuxOut;
        reg [7:0] op2MuxOut = 0;
 
 
 
 
        always @ *
        always @ (op2MuxSel)
        begin
        begin
 
 
                case (op2MuxSel)
                case (op2MuxSel)
 
 
                `op2MuxSelInput :       begin
                `op2MuxSelInput :       begin
Line 35... Line 35...
                                                                op2MuxOut = byteOut;
                                                                op2MuxOut = byteOut;
                                                                end
                                                                end
 
 
 
 
                default                 :       begin
                default                 :       begin
                                                                op2MuxOut = 8'bzzzzzzzz;
                                                                op2MuxOut = op2MuxOut;
                                                                end
                                                                end
 
 
                endcase
                endcase
 
 
        end     // end always
        end     // end always

powered by: WebSVN 2.1.0

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