Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
module romm1(i,x);
input [13:0] i;
output reg [13:0] x;
always @ (i)
begin
case(i)
0 : x = 0;
1 : x = 2025;
2 : x = 4050;
3 : x = 11677;
4 : x = 8158;
5 : x = 13463;
6 : x = 10094;
7 : x = 15699;
8 : x = 1;
9 : x = 2026;
10 : x = 4051;
.
.
.
.
.
.