mirror of
https://github.com/tillitis/tillitis-key1.git
synced 2024-12-20 05:14:29 -05:00
Remove API access to current prescaler value
This commit is contained in:
parent
cc59d8dc93
commit
c90771fe19
@ -72,7 +72,6 @@ module timer(
|
|||||||
reg tmp_ready;
|
reg tmp_ready;
|
||||||
|
|
||||||
wire core_ready;
|
wire core_ready;
|
||||||
wire [31 : 0] core_curr_prescaler;
|
|
||||||
wire [31 : 0] core_curr_timer;
|
wire [31 : 0] core_curr_timer;
|
||||||
|
|
||||||
|
|
||||||
@ -93,7 +92,6 @@ module timer(
|
|||||||
.timer_value(timer_reg),
|
.timer_value(timer_reg),
|
||||||
.start(start_reg),
|
.start(start_reg),
|
||||||
.stop(stop_reg),
|
.stop(stop_reg),
|
||||||
.curr_prescaler(core_curr_prescaler),
|
|
||||||
.curr_timer(core_curr_timer),
|
.curr_timer(core_curr_timer),
|
||||||
.ready(core_ready)
|
.ready(core_ready)
|
||||||
);
|
);
|
||||||
@ -178,7 +176,7 @@ module timer(
|
|||||||
end
|
end
|
||||||
|
|
||||||
if (address == ADDR_PRESCALER) begin
|
if (address == ADDR_PRESCALER) begin
|
||||||
tmp_read_data = core_curr_prescaler;
|
tmp_read_data = prescaler_reg;
|
||||||
end
|
end
|
||||||
|
|
||||||
if (address == ADDR_TIMER) begin
|
if (address == ADDR_TIMER) begin
|
||||||
|
@ -22,7 +22,6 @@ module timer_core(
|
|||||||
input wire start,
|
input wire start,
|
||||||
input wire stop,
|
input wire stop,
|
||||||
|
|
||||||
output wire [31 : 0] curr_prescaler,
|
|
||||||
output wire [31 : 0] curr_timer,
|
output wire [31 : 0] curr_timer,
|
||||||
|
|
||||||
output wire ready
|
output wire ready
|
||||||
@ -65,9 +64,8 @@ module timer_core(
|
|||||||
//----------------------------------------------------------------
|
//----------------------------------------------------------------
|
||||||
// Concurrent connectivity for ports etc.
|
// Concurrent connectivity for ports etc.
|
||||||
//----------------------------------------------------------------
|
//----------------------------------------------------------------
|
||||||
assign curr_prescaler = prescaler_reg;
|
assign curr_timer = timer_reg;
|
||||||
assign curr_timer = timer_reg;
|
assign ready = ready_reg;
|
||||||
assign ready = ready_reg;
|
|
||||||
|
|
||||||
|
|
||||||
//----------------------------------------------------------------
|
//----------------------------------------------------------------
|
||||||
|
@ -39,7 +39,6 @@ module tb_timer_core();
|
|||||||
reg tb_stop;
|
reg tb_stop;
|
||||||
reg [31 : 0] tb_prescaler;
|
reg [31 : 0] tb_prescaler;
|
||||||
reg [31 : 0] tb_timer;
|
reg [31 : 0] tb_timer;
|
||||||
wire [31 : 0] tb_curr_prescaler;
|
|
||||||
wire [31 : 0] tb_curr_timer;
|
wire [31 : 0] tb_curr_timer;
|
||||||
wire tb_ready;
|
wire tb_ready;
|
||||||
|
|
||||||
@ -54,7 +53,6 @@ module tb_timer_core();
|
|||||||
.timer_value(tb_timer),
|
.timer_value(tb_timer),
|
||||||
.start(tb_start),
|
.start(tb_start),
|
||||||
.stop(tb_stop),
|
.stop(tb_stop),
|
||||||
.curr_prescaler(tb_curr_prescaler),
|
|
||||||
.curr_timer(tb_curr_timer),
|
.curr_timer(tb_curr_timer),
|
||||||
.ready(tb_ready)
|
.ready(tb_ready)
|
||||||
);
|
);
|
||||||
|
Loading…
Reference in New Issue
Block a user