#ifndef KB_H #define KB_H #include "quantum.h" #define LAYOUT_ortho_2x2( \ K00, K01, \ K10, K11 \ ) { \ { K00, K01 }, \ { K10, K11 } \ } #endif ref='/favicon.ico'/>
1 2 3 4 5 6 7 8 9 10 11 12
module sumprod(a, b, c, sum, prod); input [7:0] a, b, c; output [7:0] sum, prod; {* sumstuff *} assign sum = a + b + c; {* *} assign prod = a * b * c; endmodule