1

Reassemble programs

This commit is contained in:
2023-03-30 16:34:19 +02:00
parent 3ebced585f
commit 111ff0c8d0
4 changed files with 41 additions and 41 deletions

View File

@ -6,9 +6,9 @@ module ROM(
);
always @(address) case (address)
8'b00000000: dataout = 8'b11000000;
8'b00000001: dataout = 8'b00000000;
8'b00000010: dataout = 8'b11000100;
8'b00000001: dataout = 8'b11000000;
8'b00000010: dataout = 8'b00000000;
8'b00000011: dataout = 8'b11000100;
default: dataout = 8'b00000000;
endcase