3
0
mirror of https://github.com/Qortal/Brooklyn.git synced 2025-02-07 06:44:18 +00:00
Brooklyn/arch/arm/mm/Status_Reg.v
2022-04-02 18:08:56 +05:00

25 lines
391 B
Verilog

`include "settings.h"
module Status_Reg
(
input clk,
input rst,
input load,
input [3:0] status_in,
output reg [3:0] status
);
always @(negedge clk or posedge rst) begin
if(rst) begin
status <= 0;
end
else if(load) begin
status <= status_in;
end
else begin
status <= status;
end
end
endmodule