Skip to content

Commit

Permalink
Update tt_um_Digi_OTA_.v
Browse files Browse the repository at this point in the history
  • Loading branch information
maquinadefuego919 authored Oct 17, 2024
1 parent bc3ff7d commit 1324aee
Showing 1 changed file with 18 additions and 18 deletions.
36 changes: 18 additions & 18 deletions src/tt_um_Digi_OTA_.v
Original file line number Diff line number Diff line change
Expand Up @@ -22,35 +22,35 @@ module tt_um_Digi_OTA_ (



wire Vip, Vin, Out;
wire INn, INp, INn_CMP, INp_CMP, CMP, EN, not_EN, Op, On; //internals nets
wire Vip, Vin, Out;
wire INn, INp, INn_CMP, INp_CMP, CMP, EN, not_EN, Op, On; //internals nets

assign Vip = ua[0];
assign Vin = ua[1];
assign Vip = ua[0];
assign Vin = ua[1];

assign ua[2] = Out;
assign ua[5:3] = 3'b0;
assign ua[2] = Out;
assign ua[5:3] = 3'b0;


not IV1(INn, Vip);
not INV2(INn_CMP,CMP);
not IV3(INp, Vin);
not INV4(INp_CMP,CMP);
not IV1(INn, Vip);
not INV2(INn_CMP,CMP);
not IV3(INp, Vin);
not INV4(INp_CMP,CMP);

nor NOR1(Op, INn, INn_CMP);
nor NOR2(On, INp, INp_CMP);
nor NOR1(Op, INn, INn_CMP);
nor NOR2(On, INp, INp_CMP);


xor XOR1(EN, Op, On);
xor XOR1(EN, Op, On);

not IV7(not_EN, EN);
notif1 IT1(CMP, not_EN, Op);
not IV7(not_EN, EN);
notif1 IT1(CMP, not_EN, Op);

bufif1 BT1(Out, EN, Op);
bufif1 BT1(Out, EN, Op);



assign uo_out[0] = VGND;
assign uo_out[1] = VGND;
assign uo_out[2] = VGND;
assign uo_out[3] = VGND;
assign uo_out[4] = VGND;
Expand Down

0 comments on commit 1324aee

Please sign in to comment.