No puedo encontrar ninguna fuente para este error, ¡alguna ayuda muy apreciada!
Error: Error (12004): Port "a" does not exist in primitive "tff" of instance "t1"
module part1(SW);
input [0:9] SW;
wire q1;
tff t1(.t(SW[2]), .clk(KEY[0]), .a(SW[1]), .q(q1));
endmodule
module tff(t, clk, a, q);
input t;
input clk;
input a;
output reg q;
always@(posedge clk)
begin
if(a)
q <= 1;
else
q <= 0;
end
endmodule