J
jelydonut
Guest
Per sintesi, che scelgono i migliori risultati o si finisce per essere lo stesso ..
comprese le situazioni con molti più casi ..
assegnare x = (blah == 2'b00)?a:
((== 2'b01 blah)? b:
((== 2'b10 blah)? c:
((== 2'b11 blah)? d:
16'hxxxx)));
O
caso (blah)
2'b00: x <= a;
2'b01: x <= b;
2'b10: x <= c;
2'b11: x <= d;
default: x <= 16'hxxxx;
endcase
ignorando qualsiasi sintassi possono avere i avvitato fino ...
jelydonut
comprese le situazioni con molti più casi ..
assegnare x = (blah == 2'b00)?a:
((== 2'b01 blah)? b:
((== 2'b10 blah)? c:
((== 2'b11 blah)? d:
16'hxxxx)));
O
caso (blah)
2'b00: x <= a;
2'b01: x <= b;
2'b10: x <= c;
2'b11: x <= d;
default: x <= 16'hxxxx;
endcase
ignorando qualsiasi sintassi possono avere i avvitato fino ...
jelydonut