2019-12-04 00:47:19 +00:00
|
|
|
/*
|
|
|
|
Copyright 2019 Blue Liang, liangkangnan@163.com
|
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
`include "defines.v"
|
|
|
|
|
|
|
|
// pc reg module
|
2020-03-29 15:19:14 +00:00
|
|
|
module pc_reg(
|
2019-12-04 00:47:19 +00:00
|
|
|
|
|
|
|
input wire clk,
|
|
|
|
input wire rst,
|
|
|
|
|
2020-03-29 15:19:14 +00:00
|
|
|
input wire jump_flag_i,
|
|
|
|
input wire[`InstAddrBus] jump_addr_i,
|
|
|
|
input wire[`Hold_Flag_Bus] hold_flag_i,
|
|
|
|
input wire jtag_reset_flag_i,
|
2019-12-04 00:47:19 +00:00
|
|
|
|
2020-03-29 15:19:14 +00:00
|
|
|
output reg[`InstAddrBus] pc_o
|
2019-12-04 00:47:19 +00:00
|
|
|
|
2020-02-23 09:01:45 +00:00
|
|
|
);
|
2019-12-04 00:47:19 +00:00
|
|
|
|
|
|
|
|
|
|
|
always @ (posedge clk) begin
|
2020-03-29 15:19:14 +00:00
|
|
|
if (rst == `RstEnable || jtag_reset_flag_i == 1'b1) begin
|
|
|
|
pc_o <= `CpuResetAddr;
|
|
|
|
end else if (jump_flag_i == `JumpEnable) begin
|
|
|
|
pc_o <= jump_addr_i;
|
|
|
|
end else if (hold_flag_i >= `Hold_Pc) begin
|
|
|
|
pc_o <= pc_o;
|
2019-12-04 00:47:19 +00:00
|
|
|
end else begin
|
2020-03-29 15:19:14 +00:00
|
|
|
pc_o <= pc_o + 4'h4;
|
2019-12-04 00:47:19 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
endmodule
|