bootloader test dump

This commit is contained in:
2024-11-23 16:56:29 +05:30
parent 5527f9e8b2
commit e2fa3ee864
11 changed files with 538 additions and 183 deletions

View File

@@ -30,4 +30,8 @@ module Register(
Bit BITN(clk, in[13], load, out[13]);
Bit BITO(clk, in[14], load, out[14]);
Bit BITP(clk, in[15], load, out[15]);
// reg [15:0] out = 0;
// always @(posedge clk)
// out <= load?in:out;
// initial out = 0;
endmodule