diff options
| -rw-r--r-- | techlibs/nexus/cells_sim.v | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/techlibs/nexus/cells_sim.v b/techlibs/nexus/cells_sim.v index 1e876a210..d1c8bf0d7 100644 --- a/techlibs/nexus/cells_sim.v +++ b/techlibs/nexus/cells_sim.v @@ -54,8 +54,8 @@ endmodule  // Bidirectional IO buffer  module BB(input T, I, output O,  	(* iopad_external_pin *) inout B); -	assign B = T ? 1'bz : O; -	assign I = B; +	assign B = T ? 1'bz : I; +	assign O = B;  endmodule  // Input buffer  | 
