import time import mitmproxy from mitmproxy.script import concurrent @concurrent # Remove this and see what happens def request(flow): mitmproxy.ctx.log("handle request: %s%s" % (flow.request.host, flow.request.path)) time.sleep(5) mitmproxy.ctx.log("start request: %s%s" % (flow.request.host, flow.request.path)) plication/atom+xml'/>
aboutsummaryrefslogtreecommitdiffstats
path: root/tests/asicworld/code_tidbits_wire_example.v
blob: 577a535d1b4945235671cac4ace7888f81774261 (plain)
1
2
3
4
5
6
7
8
9
module wire_example( a, b, y);
  input a, b;
  output y;

  wire a, b, y;

  assign y = a & b;

endmodule