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/] [accumulator.v] - Diff between revs 8 and 9

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

Rev 8 Rev 9
Line 10... Line 10...
 
 
        output [7:0] accOut;
        output [7:0] accOut;
 
 
        reg [7:0] accOut;
        reg [7:0] accOut;
 
 
        always @ (accIn, accEn)
        always @ (accEn)
        begin
        begin
                if (accEn)
                if (accEn)
                begin
                begin
                        accOut = accIn;
                        accOut = accIn;
                        $write ("\n%b   data written to accumulator     :       module accumulator      ", accIn);
                        $write ("\n%b   data written to accumulator     :       module accumulator      ", accIn);

powered by: WebSVN 2.1.0

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