WENDIM
WENDIM
Spring 2023-2024
Contents
Experiment (1): Introduction to Basic Logic Gates.................................................................................3
Experiment (2): Exploring Possibilities With Logic Gates.......................................................................7
Experiment (3): Logic Gate Applications.............................................................................................11
Experiment (4): Parity Check with Logic Gates....................................................................................15
Experiment (5): Adder & Subtractor Logic Circuits..............................................................................18
Experiment (6): Decoders & Multiplexers...........................................................................................23
Experiment (7): Introduction to Flip Flops...........................................................................................28
Experiment (8): Problem solving with K-maps....................................................................................31
Experiment (9): Logic Circuit Design with PoS method........................................................................34
Appendix............................................................................................................................................35
University of Dubai
College of Engineering and IT
Department of Electrical Engineering
The basic logic gates are categorized into seven types as AND, OR, XOR, NAND, NOR, XNOR, and NOT.
In this Lab, the students use Multisim software to implement the circuits. Multisim Electronics Workbench
is industry-standard SPICE simulation and circuit design software for analog, digital, and power electronics
in education and research.
Imagine that an AND gate has three inputs instead of two. What would be its truth table?
Input 1 Input 2 Input 3 Output
Imagine that an OR gate has three inputs instead of two. What would be its truth table?
1. Use an AND gate to switch an LED on and off. Provide screenshots of your work.
2. Use an OR gate to switch an LED on and off. Provide screenshots.
3. Insert an Inverter between the output of the OR gate and the LED. Write down the resulting truth
table.
1. Connect the circuit in Task2 (AND/ OR) on the bread board by using the below components, take
photos for the final design and include them in your reports (Refer to Pin configuration in the appendix).
• DC voltage source -5V
• LEDs
• Wires
University of Dubai
College of Engineering and IT
Department of Electrical Engineering
Introduction
A logic gate is a device that acts as a building block for digital circuits. They perform basic logical functions
that are fundamental to digital circuits. Most electronic devices we use today will have some form of logic
gates in them.
In this lab the students will investigate the behavior of many types of logic gates with many inputs 2, 3,
4,etc.
1. How many possible input combinations are there for a 3-input AND gate?
2. How many possible input combinations are there for a 4-input AND gate?
3. If you have a 2-input AND gate, and a 2-input OR gate with their outputs connected to another 2-
input OR gate. How many possible input combinations are there in total?
1. In multisim, insert a 2-input NAND gate. Experiment with all possible inputs and write down the
full truth table for the device.
2. Design an equivalent NAND gate circuit without using an NAND gate. Instead, use two types of the
basic logic gates: AND/OR/Inverter. Which logic gates will you use? How will they be connected?
3. Recreate the following (OR gate + Inverter) circuit and answer the questions that follow:
b. Insert a second inverter after the first inverter. What would be the simplified equivalent circuit?
2. Recreate the following (AND gate + Inverter) circuit and answer the questions that follow:
a. Write down the full truth table for the circuit. Use the table below
Introduction
The range of usage of logic gates is quite extensive, such as in manufacturing more complex devices e.g.
binary counters, in decision–making regarding automatic control of machines and different industrial
processes, in calculators and computers, in digital measuring techniques, in digital processing of
communications, in musical instruments, games and different domestic appliances
You have successfully found a job as a circuit designer at RLD systems. RLD is a local start-up company.
It specializes in building circuit boards for security and lighting systems. Your first task is to build an alarm
system for use in a school environment.
4. The school has been having issues with water leakage in its water storage system. Usually, it is
either a loose tank lid or damage to a transmission pipe that lead to such leakage. Create a circuit
that lights a Red LED if any one of these two reasons is detected.
5. The school has a problem with strangers trespassing into school premises. In particular, the recess
and school bus parking areas are the center of such occurrences. There are now cameras in both
areas to detect strangers. Create a circuit that sounds a Buzzer if a trespasser is detected in any of
these two areas.
6. As a side task, the school also wishes to have a buzzer that switches on only after the first three
classes have ended. This is needed to let students know that recess time has started.
z
b. Can you use only one logic gate instead of two to arrive at the same truth table? If so what
would be the equivalent circuit?
YES WE Can represent by OR gate.
Task B: Applications of Logic Gates (Experimental implementation)
1. Repeat steps 1-3 by construct the circuit on the bread board by using the below components,
take photos for the final design and include them in your reports (Refer to Pin configuration in
the appendix).
DC voltage source -5V
LEDs
IC74LS08 (Refer to the IC 741LS08 Datasheet in the appendix)
IC74LS32 (Refer to the IC74LS32 Datasheet in the appendix)
Wires
When a stream of bits is sent from one point to another within a single digital system or from one
system to another, errors may occur. Wireless communication systems experience errors in data
transmission. Errors take the form of bit changes from “0” to “1 “or vice versa. Many systems, however,
employ something called a “parity” bit as a means of detecting bit errors. Binary information is normally
handled by a digital system in groups of bits called words. A word always contains either an even or an odd
number of 1's. An even parity bit makes the total of “1’s” even.
Say that you want to transmit 4 bits, and the number of “1’s” is even in the 4 bit word. The Even
parity checker ensures that there is an even number of “1’s” by giving a parity bit of zero if there is an even
number of “1’s”. An odd parity checker ensures that there is an odd number of “1’s” by giving a parity bit
of “1” if there is an even number of “1’s” in the word.
But how can we implement this concept for error checking in hardware?
We can use logic gates to do so. One way of doing so, is to use XOR gates. In your first task. You shall
explore the function of the XOR gate and its truth table. In the second task, you will implement a parity
checker using XOR gates.
1. Create a three-bit even parity checker and write down its truth table.
2. Create a three-bit odd parity checker and write down its truth table.
0
3. Create a four-bit even parity checker and write down its truth table.
4. Create a four-bit odd parity checker and write down its truth table.
University of Dubai
College of Engineering and IT
Department of Electrical Engineering
Introduction:
Previously we used XOR gates to create parity check circuits. The concept utilized Boolean arithmetic to
find odd and even numbers of 1’s for a given sequence of binary digits.
This time, we will use XOR gates alongside other kinds of logic gates to create addition and subtraction
operations.
Adders
A B SUM CARRY
0 0
0 1
1 0
1. Open Multisim
2. Construct the circuit given below
3. Test all possible input combinations and write down the full truth table for the circuit.
0 0 0
0 0 1
0 1 0
0 1 1
1 0 0
1 0 1
1 1 0
1 1 1
A subtracter circuit is similar to adder circuit with a slight change. It uses inverters to come up with
difference and borrow values. Construct the circuit below and write down its full truth table.
A B XOR AND
DIFF BORROW
0 0
0 1
1 0
1 1
1. Open Multisim
2. Construct the circuit given below
3. Insert 2 XOR gates, 2 NOT gates, 1 OR gate and 2 AND gates.
4. Insert 3 DIGITAL CONSTANTs.
5. Test all possible low and high conditions for inputs and record your results
6. Compare your sum and carry results with manual calculation
A B C DIFFERENCE BORROW
0 0 0
0 0 1
0 1 0
0 1 1
1 0 0
1 0 1
1 1 0
1 1 1
University of Dubai
College of Engineering and IT
Department of Electrical Engineering
The Multiplexer (MUX) is a device that allows one or more low-speed analog or
digital input signals to be selected, combined and transmitted at a higher
speed on a single shared medium or within a single shared device.
The Binary Decoder is another type of digital logic device that has inputs of 2-bit, 3-
bit or 4-bit codes depending on the number of data input lines. A decoder that has a
set of two or more bits will be defined as having an n-bit code, and therefore it will
be possible to represent 2n possible values. Thus, a decoder generally decodes a
binary value into a non-binary one by setting exactly one of its n outputs to logic
“1”.
Task 1-A (Simulation using Multisim)
Design a 4-1 multiplexer. Provide screenshots and a truth table to verify your
results.
Fig.1
Task 1-B (Hardware implementation)
Connect a 4-1 multiplexer as per Fig.2 Using IC 74151, LED, on the bread
board. The multiplex function of 74151 in terms of select lines is shown in the
table below. (Refer to the DM74ALS151 1 of 8 Line Multiplexer Datasheet in
the appendix)
Fig.2
Task 2
Design a 2-4 decoder. Provide screenshots and a truth table to verify your results.
A B Q0 Q1 Q3 Q4
0 0
0 1
1 0
1 1
Fig.3
Fig.4
Task 1: Pre-lab
Implement the following Boolean algebra statements in circuit form using Multisim.
Then, fill their corresponding truth tables.
1- AB’ + AB
2- (AB)’ + A’B
3- (AB)’ + (AB)’
1- Take 2 or 3 screenshots for your design and show the resulting time plot for
different input states.
2- Investigate the role of the second (lower) input labeled as DG2 in the above
schematic. (40 points each)
(a) To do so, fill in the following Truth table.
In many digital circuits and practical problems, we need to find expression with minimum variables. We
can minimize Boolean expressions of 2, 3, or 4 variables very easily using the K - map without using any
Boolean algebra theorems. The K -map can take two forms Sum of Product (SOP) and Product of Sum (POS)
according to the needs of the problem. The K -map is table-like representation but it gives more
information than TRUTH TABLE. We fill the grid of K - map with 0’ s and 1’ s then solves it by making
groups.
A sewage treatment plant has recently hired you to help with the automation of their operations. One of
their onshore sewage dispensers, releases sewage into the sea. In order to sanitize the sewage before it is
discharged into the sea, a disinfectant is applied to the sewage. Given the hazardous nature of this
operation, you were tasked with designing a logic circuit that allows the dispenser to discharge sewage
only if the disinfectant is being sprayed in the discharge pipe. If there is no disinfectant being sprayed in
the pipe, then the dispenser lid should close and not let any sewage pass into the pipe.
Hence, it is required to have 3 sensors to sense the presence of the disinfectant gas. This number of
sensors is needed in the case of a single sensor failure. The lid of the dispenser would open only if at least
two sensors sense that the disinfectant is present in the pipe; otherwise, the lid would close and no
sewage would be let out from the dispenser.
As a digital designer, you are tasked with creating a solution for this problem. You should write a truth
table for proper logic circuit operation of the sensors and their output. Note that each sensor represents
one input. Each sensor detects whether the disinfectant is being sprayed (logic level “1”) or not (logic level
“0”). You should then design hardware circuitry using logic gates. Refer to the following steps to complete
the task.
1- Write down the truth table. There are three inputs and one output (open lid = 1).
2- Write down the Boolean algebra expression for the truth table. Use the Sum-of-Products (SoP)
method.
3- Implement the circuit using logic gates based on the Boolean expression.
7- (Hardware implementation): Implement the circuit on the breadboard using the required
Logic gates/ICs and LED, replace the sensors with switches.
University of Dubai
College of Engineering and IT
Department of Electrical Engineering
Introduction:
POS stands for product of sum is a technique of explaining a Boolean expression through a set of max
terms or sum terms.
The Difference between the SOP and POS in Digital Logic is that the SOP includes the OR of multiple
product terms. POS, on the other hand, generates a logical expression composed of the AND of multiple
OR terms. The SOP (Sum of Product) and POS (Product of Sum) methods are used to deduce a specific logic
function.
1- Use the Product of Sum (PoS) method to arrive at a Boolean algebra expression to represent the
truth table.
2- Implement the expression in a digital circuit form.
Appendix
Assessment Instrument Cover Sheet
Total
Student ID:
1.
2.
3.
4.
Total Marks =
(Max 100%)
1.
2.
3.
4.
How to read Data sheet and identify Pins
Datasheets are instruction manuals for electronic components. They explain exactly what a
component does and how to use it, datasheets are the best place to find the details you need to
design a circuit or get one working.
A datasheet’s contents will vary widely depending on the type of part, but they will usually have
most of the following sections:
The first page is usually a summary of the part’s function and features. This is where you can
quickly find a description of the part's functionality, the basic specifications (numbers that
describe what a part needs and can do), and sometimes a functional block diagram that shows
the internal functions of the part. This page will often give you a good first impression as to
whether potential part will work for your project or not.
A pinout lists the part’s pins, their functions, and where they’re physically located on the part for
various packages the part might be available in. Note the special marks on the part for
determining where pin 1 is (this is important when you plug the part into your circuit!), and how
the pins are numbered.
You'll also see the more normal recommended operating conditions in the data sheet. These may
include voltage and current ranges for various functions, timing information, temperature ranges,
bus addresses, and other useful performance information.
Some parts will have one or more graphs showing the part’s performance vs. various criteria
(supply voltage, temperature, etc.) Keep an eye out for "safe zones" where reliable operation is
guaranteed:
Pin Configuration
The pins on an IC chip provide connections to the tiny integrated circuits inside of your
electronics. To determine which pin is which, you look down on the top of the IC for the clocking
mark, which is usually a small notch in the packaging but might instead be a little dimple or a
white or colored stripe. By convention, the pins on an IC are numbered counterclockwise, starting
with the upper-left pin closest to the clocking mark.
74LS08 – Quadruple Two Input AND Gate
74LS08 IC
74LS08
Pinout
74LS08 IC is a member of 74XXYY IC series. There are four AND gates in the
chip and each gate have two inputs, hence the name QUADRUPLE 2- INPUT
AND GATE. The gates in the chip are designed by SCHOTTKY TRANSISTORS for
high speed logic operations.
74LS08 is a 14 PIN IC. The chip is available in different packages and is chosen
depending on requirement. The description for each pin is given below.
AND GATE 1
1 A1-INPUT1 of GATE 1
2 B1-INPUT2 of GATE 1
3 Y1-OUTPUT of GATE1
AND GATE 2
4 A2-INPUT1 of GATE 2
5 B2-INPUT2 of GATE 2
6 Y2-OUTPUT of GATE2
AND GATE 3
9 A3-INPUT1 of GATE 3
10 B3-INPUT2 of GATE 3
8 Y3-OUTPUT of GATE3
AND GATE 4
12 A4-INPUT1 of GATE 4
13 B4-INPUT2 of GATE 4
11 Y4-OUTPUT of GATE4
SHARED TERMINALS
August 1986
Revised March 2000
DM74LS08
Quad 2-Input AND Gates
General Description
This device contains four independent gates
each of which performs the logic AND
function.
Ordering Code:
Inputs Output
A B Y
L L L
L H L
H L L
H H H
Y=
AB H = HIGH Logic
Level L = LOW Logic
Level
Supply Voltage 7V the safety of the device cannot be guaranteed. The device should not be
Input Voltage 7V operated at these limits. The parametric values defined in the
Electrical Characteristics tables are not guaranteed at the absolute maximum
ratings.
Operating Free Air Temperature Range 0°C to +70°C The “Recommended Operating Conditions” table will define
the conditions for actual device operation. Storage Temperature Range −65°C to +150°C
Electrical Characteristics
over recommended operating free air temperature range (unless otherwise noted)
Typ
Symbol Parameter Conditions Min (Note Max Units
2)
VI Input Clamp Voltage VCC = Min, II = −18 mA −1.5 V
IOS Short Circuit Output Current VCC = Max (Note 3) −20 −100 mA
ICCH Supply Current with Outputs HIGH VCC = Max 2.4 4.8 mA
ICCL Supply Current with Outputs LOW VCC = Max 4.4 8.8 mA
Switching Characteristics
at VCC = 5V and TA = 25°C
RL = 2 kΩ
www.fairchildsemi.com 2
Physical Dimensions inches (millimeters) unless otherwise
3
Physical Dimensions inches (millimeters) unless otherwise noted
www.fairchildsemi.c 4
Physical Dimensions inches (millimeters) unless otherwise noted (Continued)
Fairchild does not assume any responsibility for use of any circuitry described, no
circuit patent licenses are implied and Fairchild reserves the right at any time
without notice to change said circuitry and specifications.
LIFE SUPPORT POLICY
FAIRCHILD’S PRODUCTS ARE NOT AUTHORIZED FOR USE AS CRITICAL COMPONENTS
IN LIFE SUPPORT DEVICES OR SYSTEMS WITHOUT THE EXPRESS WRITTEN APPROVAL
OF THE PRESIDENT OF FAIRCHILD SEMICONDUCTOR CORPORATION. As used herein:
1. Life support devices or systems are devices or systems 2. A critical component in
any component of a life support which, (a) are intended for surgical implant into
the device or system whose failure to perform can be reabody, or (b) support or
sustain life, and (c) whose failure sonably expected to cause the failure of the life
support to perform when properly used in accordance with device or system, or
to affect its safety or effectiveness. instructions for use provided in the labeling,
can be rea-
sonably expected to result in a significant injury to the www.fairchildsemi.com
user.
5
IC74LS32 Data sheet
June 1986
Revised March 2000
DM74LS32
Quad 2-Input OR Gate
General Description
This device contains four independent gates
each of which performs the logic OR function.
Ordering Code:
Supply Voltage 7V the safety of the device cannot be guaranteed. The device should not be
Input Voltage 7V operated at these limits. The parametric values defined in the
Electrical Characteristics tables are not guaranteed at the absolute maximum
ratings.
Operating Free Air Temperature Range 0°C to +70°C The “Recommended Operating Conditions” table will define
the conditions for actual device operation. Storage Temperature Range −65°C to +150°C
Electrical Characteristics
over recommended operating free air temperature range (unless otherwise noted)
Typ
Symbol Parameter Conditions Min (Note Max Units
2)
VI Input Clamp Voltage VCC = Min, II = −18 mA −1.5 V
IOS Short Circuit Output Current VCC = Max (Note 3) −20 −100 mA
ICCH Supply Current with Outputs HIGH VCC = Max 3.1 6.2 mA
ICCL Supply Current with Outputs LOW VCC = Max 4.9 9.8 mA
Switching Characteristics
at VCC = 5V and TA = 25°C
RL = 2 kΩ
www.fairchildsemi.com 2
Physical Dimensions inches (millimeters) unless otherwise
3
Physical Dimensions inches (millimeters) unless otherwise noted
www.fairchildsemi.c 4
Physical Dimensions inches (millimeters) unless otherwise noted (Continued)
Fairchild does not assume any responsibility for use of any circuitry described, no
circuit patent licenses are implied and Fairchild reserves the right at any time
without notice to change said circuitry and specifications.
LIFE SUPPORT POLICY
FAIRCHILD’S PRODUCTS ARE NOT AUTHORIZED FOR USE AS CRITICAL COMPONENTS
IN LIFE SUPPORT DEVICES OR SYSTEMS WITHOUT THE EXPRESS WRITTEN APPROVAL
OF THE PRESIDENT OF FAIRCHILD SEMICONDUCTOR CORPORATION. As used herein:
1. Life support devices or systems are devices or systems 2. A critical component in
any component of a life support which, (a) are intended for surgical implant into
the device or system whose failure to perform can be reabody, or (b) support or
sustain life, and (c) whose failure sonably expected to cause the failure of the life
support to perform when properly used in accordance with device or system, or
to affect its safety or effectiveness. instructions for use provided in the labeling,
can be rea-
sonably expected to result in a significant injury to the www.fairchildsemi.com
user.
5
DATA SHEET
For a complete data sheet, please also download:
74HC/HCT139
Dual 2-to-4 line
decoder/demultiple
xer
Product specification September 1993
File under Integrated Circuits, IC06
Philips Semiconductors Product specification
TYPICAL
SYMBOL PARAMETER CONDITIONS UNIT
HC HCT
t /t
PHL PLH propagation delay CL = 15 pF; VCC = 5
nAn to nY n V 11 13 ns
nE 3 to nYn 10 13 ns
CI input capacitance 3.5 3.5 pF
C
PD power dissipation capacitance per notes 1 and 2 42 44 pF
multiplexer
Notes
1. CPD is used to determine the dynamic power dissipation (PD in mW):
2 2
PD = CPD ´ VCC ´ fi + å (CL ´ VCC ´ fo)
where: fi = input frequency in MHz
fo = output frequency in MHz
å (CL ´ CC2 ´ fo) = sum of outputs CL =
V
output load capacitance in pF VCC =
supply voltage in V
2. For HC the condition is VI = GND to
VCC For HCT the condition is VI = GND to
VCC - 1.5 V
APPLICATIONS
· Memory decoding or data-routing
· Code conversion
ORDERING INFORMATION
See “74HC/HCT/HCU/HCMOS Logic Package Information”.
September 1993 2
Philips Semiconductors Product specification
PIN DESCRIPTION
(a (b
) )
Fig.3 IEC logic
symbol.
September 1993 3
Philips Semiconductors Product specification
Fig.4 Functional
diagram.
FUNCTION TABLE
INPUTS OUTPUTS
September 1993 4
Philips Semiconductors Product specification
September 1993 5
Philips Semiconductors Product specification
September 1993 6
Philips Semiconductors Product specification
AC WAVEFORMS
Fig. Waveforms showing the address input (nAn) to output (nYn) propagation delays
6
transitionand the output
times.
Fig. Waveforms showing the enable input (nE) to output (nYn) propagation delays
7
transitionand the output
times.
PACKAGE OUTLINES
See “74HC/HCT/HCU/HCMOS Logic Package Outlines”.
September 1993 7
August 1995
1
DM74ALS151
DM74ALS151
1 of 8 Line Data
Selector/Multiplexer
Data
of 8 Line
This Data Selector/Multiplexer contains full on-chip decod- Y Advanced oxide-isolated, ion-implanted Schottky TTL
ing to select one-of-eight data sources as a result of a process
unique three-bit binary code at the Select inputs. Two · Switching performance is guaranteed over full
com-plementary outputs provide both inverting and non- tempera- ture and VCC supply range
inverting buffer operation. A Strobe input is provided · Pin and functional compatible with LS family counter-part
which, when at the high level, disables all data inputs and
forces the Y out-put to the low state and the W output to · Improved output transient handling capability
the high state. The Select input buffers incorporate
internal overlap features to ensure that select input
changes do not cause invalid output transients.
Multiplexer
Selector/
Connection Diagram Function
Table
Dual-In-Line Package
Inputs Outputs
Select Strobe
Y W
C B A S
X X X H L H
L L L L D0 D0
L L H L D1 D1
L H L L D2 D2
L H H L D3 D3
H L L L D4 D4
H L H L D5 D5
H H L L D6 D6
H H H L D7 D7
e e e e
H High Level, L Low Level, X Don’t Care D0 thru D7 the level of the respective D input
TL/F/6203 –
1
Order Number DM74ALS151M or
DM74ALS151N See NS Package Number
M16A or N16A
C
1995 National Semiconductor Corporation TL/F/6203 RRD-B30M105/Printed in U. S. A.
Absolute Maximum Ratings
Supply Voltage 7V Note: The ‘‘Absolute Maximum Ratings’’ are those values beyond
Input Voltage 7V which the safety of the device cannot be guaran-teed. The device
should
definednotin bethe
operated at these limits. The parametric values
Operating Free Air Temperature Range ‘‘Electrical Characteristics’’ table are not
DM74ALS 0§C toa 70§C
guaranteed at the absolute maximum ratings. The
b a
Storage Temperature Range 65§C to 150§C ‘‘Recommended Operating Conditions’’ table will define the
Typical iJA conditions for actual device operation.
N Package 78.0§C/W
M Package 107.0§C/W
Electrical Characteristics e e
over recommended operating free-air temperature range. All typical values are measured at VCC 5V, TA 25§C.
Symbol Parameter Conditions Min Typ Max Units
V e eb b
IK Input Clamp Voltage VCC 4.5V, IIN 18 mA 1.5 V
V e e
OH High Level VCC 4.5V, IOH Max 2.4 3.2 V
Output Voltage
eb e b
IOH 400 mA, VCC 4.5V to 5.5V VCC 2 V
V VCC
e
4.5V
OL Low Level 74ALS
e 0.35 0.5 V
Output Voltage IOL 24 mA
e e
II Input Current at VCC 5.5V, VIN 7V
0.1 mA
Max Input
Voltage
I e e
IH High Level Input VCC 5.5V, VIN 2.7V 20 mA
Current
I e e b
IL Low Level Input Current VCC 5.5V, VIN 0.4V 0.1 mA
I e e b b
O Output Drive Current VCC 5.5V, VOUT 2.25V 30 112 mA
I e
CC Supply Current VCC 5.5V
e 7.5 12 mA
All Inputs 4.5V
2
Sw itching Characteristics over recommended operating free air temperature range (Note 1)
Note 1
3
Logic
Diagram
TL/F/6203 –
2
4
Physical Dimensions inches
(millimeters)
5
Physical Dimensions inches (millimeters)
(Continued)
DM74ALS151 1 of 8 Line Data
Selector/Multiplexer
NATIONAL’S PRODUCTS ARE NOT AUTHORIZED FOR USE AS CRITICAL COMPONENTS IN LIFE SUPPORT
DEVICES OR SYSTEMS WITHOUT THE EXPRESS WRITTEN APPROVAL OF THE PRESIDENT OF NATIONAL
SEMICONDUCTOR CORPORATION. As used herein:
1. Life support devices or systems are devices 2. A critical component is any component of
or a life
systems which, (a) are intended for surgical support device or system whose failure to
implant perform can
into the body, or (b) support or sustain life, and be reasonably expected to cause the failure of
whose the life
failure to perform, when properly used in support device or system, or to affect its
to the
accordance safety or
user.with instructions for use provided in the labeling, effectiveness.
can
be reasonably expected to result in a significant
injury