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.
entity division is
port ( a : in integer range 0 to 255;
b : in integer range 0 to 17;
quo : out integer range 0 to 17);
end division;
architecture structure of division is
begin
process(a,b)
begin
quo <= a / b;
end process;
mine works better:
Code:
Code:entity division is port ( a : In integer range 0 to 255; b : In integer range 0 to 17; quo : Out integer range 0 to 17); end division; architecture structure of division is begin process(a,b) begin quo <= a / b; end process;