Initial work on decoder

Decode the LD SP, $nnnn instruction as our first three-byte
instruction.
This commit is contained in:
2021-02-16 21:13:50 +00:00
parent 3191a19f7e
commit aa92344d10
7 changed files with 130 additions and 19 deletions

View File

@@ -7,7 +7,7 @@ module clkgen #(
);
initial begin
clk_o <= 1'b0;
clk_o <= 1'b1;
nreset_o <= 1'b0;
#RESET_DELAY_NS nreset_o <= 1'b1;
end