~ubuntu-branches/ubuntu/wily/acl2/wily

« back to all changes in this revision

Viewing changes to books/centaur/vl/failtest/iface2.v

  • Committer: Package Import Robot
  • Author(s): Camm Maguire
  • Date: 2015-01-16 10:35:45 UTC
  • mfrom: (3.3.26 sid)
  • Revision ID: package-import@ubuntu.com-20150116103545-prehe9thgo79o8w8
Tags: 7.0-1
New upstream release

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
interface simplebus (input foo);
 
2
 
 
3
  logic [2:0] bar;
 
4
  wire        foo; // oops, redeclaring input
 
5
 
 
6
endinterface
 
7
 
 
8
 
 
9
module top ;
 
10
 
 
11
  wire foo;
 
12
 
 
13
  simplebus sb (foo);
 
14
 
 
15
endmodule