URL
https://opencores.org/ocsvn/eco32/eco32/trunk
Subversion Repositories eco32
[/] [eco32/] [trunk/] [fpga/] [mc/] [src/] [tmr/] [tmr.v] - Rev 69
Go to most recent revision | Compare with Previous | Blame | View Log
// // tmr.v -- programmable timer // module tmr(clk, reset, en, wr, addr, data_in, data_out, wt, irq); input clk; input reset; input en; input wr; input [3:2] addr; input [31:0] data_in; output reg [31:0] data_out; output wt; output irq; reg [31:0] counter; reg [31:0] divisor; reg divisor_loaded; reg expired; reg alarm; reg ien; always @(posedge clk) begin if (divisor_loaded == 1) begin counter <= divisor; expired <= 0; end else begin if (counter == 32'h00000001) begin counter <= divisor; expired <= 1; end else begin counter <= counter - 1; expired <= 0; end end end always @(posedge clk) begin if (reset == 1) begin divisor <= 32'hFFFFFFFF; divisor_loaded <= 1; alarm <= 0; ien <= 0; end else begin if (expired == 1) begin alarm <= 1; end else begin if (en == 1 && wr == 1 && addr[3:2] == 2'b00) begin alarm <= data_in[0]; ien <= data_in[1]; end if (en == 1 && wr == 1 && addr[3:2] == 2'b01) begin divisor <= data_in; divisor_loaded <= 1; end else begin divisor_loaded <= 0; end end end end always @(*) begin case (addr[3:2]) 2'b00: // ctrl data_out = { 28'h0000000, 2'b00, ien, alarm }; 2'b01: // divisor data_out = divisor; 2'b10: // counter data_out = counter; 2'b11: // not used data_out = 32'hxxxxxxxx; default: data_out = 32'hxxxxxxxx; endcase end assign wt = 0; assign irq = ien & alarm; endmodule
Go to most recent revision | Compare with Previous | Blame | View Log