module small_block ( // Interfaz del módulo input a, b, c, output o1, o2 ); wire s; // Estructura y comportamiento assign o1 = s | c; // or assign s = a & b; // and assign o2 = s ^ c; // xor endmodule