Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature currently requires accessing the site using the built-in Safari browser.
module eg(q0,q1,out);
parameter BW = 8;
input [BW-1:0] q0;
input [BW-1:0] q1;
output [BW-1:0] out;
assign out = (q0>q1)? (q0-q1) : (q1-q0);
enmodule