aboutsummaryrefslogtreecommitdiffstats
path: root/manual/PRESENTATION_ExSyn/opt_03.v
blob: 134161bb80a16b2fbfbd5296eda28476f3baff4f (plain)
1
2
3
4
module test(input  [3:0] A, B,
            output [3:0] Y, Z);
assign Y = A + B, Z = B + A;
endmodule
c { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Char */ .highlight .dl { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Delimiter */ .highlight .sd { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Doc */ .highlight .s2 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Double */ .highlight .se { color: #0044dd; background-color: #fff0f0 } /* Literal.String.Escape */ .highlight .sh { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Heredoc */ .highlight .si { color: #3333bb; background-color: #fff0f0 } /* Literal.String.Interpol */ .highlight .sx { color: #22bb22; background-color: #f0fff0 } /* Literal.String.Other */ .highlight .sr { color: #008800; background-color: #fff0ff } /* Literal.String.Regex */ .highlight .s1 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Single */ .highlight .ss { color: #aa6600; background-color: #fff0f0 } /* Literal.String.Symbol */ .highlight .bp { color: #003388 } /* Name.Builtin.Pseudo */ .highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */ .highlight .vc { color: #336699 } /* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */
menu "net-snmp - Open source SNMP (Simple Network Management Protocol) implementation"

config BR2_COMPILE_NET_SNMP
	bool
	default n
	depends BR2_PACKAGE_LIBNETSNMP || BR2_PACKAGE_SNMP_UTILS || BR2_PACKAGE_SNMPD || BR2_PACKAGE_SNMPD_STATIC
	select BR2_PACKAGE_LIBELF

config BR2_PACKAGE_LIBNETSNMP
	prompt "libnetsnmp - SNMP shared libraries"
	tristate
	default m if CONFIG_DEVEL
	select BR2_COMPILE_NET_SNMP
	help
	  Simple Network Management Protocol (SNMP) is a widely used 
	  protocol for monitoring the health and welfare of network 
	  equipment (eg. routers), computer equipment and even devices 
	  like UPSs. Net-SNMP is a suite of applications used to implement 
	  SNMP v1, SNMP v2c and SNMP v3 using both IPv4 and IPv6.
	  
	  http://www.net-snmp.org/
	  
	  This package contains shared libraries, needed by other programs.
	  

config BR2_PACKAGE_SNMP_UTILS
	prompt "snmp-utils - SNMP client utilities"
	tristate
	select BR2_COMPILE_NET_SNMP
	select BR2_PACKAGE_LIBNETSNMP
	default m if CONFIG_DEVEL
	help
	  Simple Network Management Protocol (SNMP) is a widely used 
	  protocol for monitoring the health and welfare of network 
	  equipment (eg. routers), computer equipment and even devices 
	  like UPSs. Net-SNMP is a suite of applications used to implement 
	  SNMP v1, SNMP v2c and SNMP v3 using both IPv4 and IPv6.
	  
	  http://www.net-snmp.org/
	  
	  This package contains the SNMP client utilities.
	  

config BR2_PACKAGE_SNMPD
	prompt "snmpd - SNMP agent"
	tristate
	select BR2_COMPILE_NET_SNMP
	select BR2_PACKAGE_LIBNETSNMP
	default m if CONFIG_DEVEL
	help
	  Simple Network Management Protocol (SNMP) is a widely used 
	  protocol for monitoring the health and welfare of network 
	  equipment (eg. routers), computer equipment and even devices 
	  like UPSs. Net-SNMP is a suite of applications used to implement 
	  SNMP v1, SNMP v2c and SNMP v3 using both IPv4 and IPv6.
	  
	  http://www.net-snmp.org/
	  
	  This package contains the SNMP agent, dynamically linked.
	  

config BR2_PACKAGE_SNMPD_STATIC
	prompt "snmpd-static - SNMP agent (static)"
	tristate
	select BR2_COMPILE_NET_SNMP
	default m if CONFIG_DEVEL
	help
	  Simple Network Management Protocol (SNMP) is a widely used 
	  protocol for monitoring the health and welfare of network 
	  equipment (eg. routers), computer equipment and even devices 
	  like UPSs. Net-SNMP is a suite of applications used to implement 
	  SNMP v1, SNMP v2c and SNMP v3 using both IPv4 and IPv6.
	  
	  http://www.net-snmp.org/
	  
	  This package contains the SNMP agent, statically linked.
	  

endmenu