URL
https://opencores.org/ocsvn/theia_gpu/theia_gpu/trunk
Subversion Repositories theia_gpu
[/] [theia_gpu/] [branches/] [icarus_version/] [rtl/] [Module_ControlRegister.v] - Rev 167
Go to most recent revision | Compare with Previous | Blame | View Log
`timescale 1ns / 1ps `include "aDefinitions.v" //------------------------------------------------------------------- module ControlRegister ( input wire Clock, input wire Reset, input wire[15:0] iControlRegister, output wire[15:0] oControlRegister ); reg [15:0] rControlRegister; assign oControlRegister = rControlRegister; always @ (posedge Clock) begin if ( Reset ) rControlRegister <= 16'b0; else begin rControlRegister <= iControlRegister; end end endmodule //-------------------------------------------------------------------
Go to most recent revision | Compare with Previous | Blame | View Log