Skip to content

Commit

Permalink
minor
Browse files Browse the repository at this point in the history
  • Loading branch information
rp-jt authored and jotego committed Jul 16, 2024
1 parent 133093f commit ea928e0
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions cores/s18/hdl/jts18_vdp_pri.sv
Original file line number Diff line number Diff line change
Expand Up @@ -33,12 +33,12 @@ assign acond = {c01, c2, c3, c4, c5, c6, c7};


always @* begin
c7 = p2 && p1 && p0;
c6 = ( !i6 || !i7 || i8 || i9 ) && p2 && p1;
c5 = i3 && !i6 && p2 && p0;
c4 = i3 && ( !i7 || i8 || i9 ) && p2;
c3 = i3 && i4 && !i7 && p1 && p0;
c2 = i3 && i4 && ( (!i6 && !i7) || i8 || i9 ) && p1;
c7 = p2 && p1 && p0;
c6 = ( !i6 || !i7 || i8 || i9 ) && p2 && p1;
c5 = i3 && !i6 && p2 && p0;
c4 = i3 && ( !i7 || i8 || i9 ) && p2;
c3 = i3 && i4 && !i7 && p1 && p0;
c2 = i3 && i4 && ( (!i6 && !i7) || i8 || i9 ) && p1;
c01 = !i3 && i4 && i5 && ( (!i6 && !i7) || i8 || i9 );
end

Expand Down

0 comments on commit ea928e0

Please sign in to comment.