SlideShare a Scribd company logo
Srijan Chatterjee, V.V.Subrahmanya Kumar Bhajana / International Journal of Engineering
Research and Applications (IJERA) ISSN: 2248-9622 www.ijera.com
Vol. 3, Issue 3, May-Jun 2013, pp.543-547
543 | P a g e
Design and Implementation of 8 Bit Asynchronous
Microcontroller
Srijan Chatterjee*, V.V.Subrahmanya Kumar Bhajana**
*(M.Tech. VLSI Design and Embedded System, School of Electronics Engineering. KIIT University. Orissa.
INDIA)
** (Associate Professor, School of Electronics Engineering. KIIT University. Orissa. INDIA)
ABSTRACT
The synchronous microcontroller is a
common processor found in many embedded
system. By using asynchronous design
techniques, the performance of the
microcontroller is increased. Through the
simulation and existing synchronous design tools
in the asynchronous design flow, a “clock
enabling technique” is simulated and then
implemented. The asynchronous architecture
includes an ALU, a decoder, a RAM, a register
and a clocking element. This paper mainly deals
with design of 8 bit asynchronous
microcontroller simulation in Verilog using
Xilinx.
Keywords – ALU, Asynchronous, Clock enabling
technique, clock skew, Decoder, Event dependant,
Embedded system, Global clock, Handshaking
technique, Master-slave, RAM, Register,
Synchronous, Time dependant, Verilog, VHDL,
Xilinx.
1. INTRODUCTION
In synchronous design, the clock period of
global clock must be keep large enough than the
worst case performance of the slowest operation.
But in case if high frequency operation for the
gradually increasing of complexity and the size of
the circuit, the propagation time of the clock in
different paths are different, it may cause the circuit
to malfunction.
Main drawbacks of the synchronous
design are power consumption and clock skew. The
main advantages of the asynchronous design are
lower power consumption, no clock skew, better
technology migration and less global timing issues.
1.1 Asynchronous Design flow with
synchronous tools
Even though complete asynchronous
design solution do not exist, one can make use of
existing synchronous design tools in asynchronous
design flow. In this flow, each design is partitioned
into blocks, and each block is controlled by clock
signal and a clock controlling signal. Simulation
tool Xilinx is used to simulate the functionality of
the asynchronous design. Once the design has been
functionally simulated, it must now be
implemented. While an entire asynchronous circuit
can not be designed in synchronous tool, individual
logic blocks can. During the design of the
asynchronous microcontroller chip, VHDL (Very
high speed integrated circuit Hardware Description
Language) or Verilog is used to generate certain
blocks.
1.2 Deference between Synchronous,
Asynchronous and Master – Slave Design
The main characteristics of the
synchronous design is, it is completely “Time
Dependant”. That means, suppose at t = 2 second
we need the output so, all blocks of circuit will
generate the output at t = 2 second. As in Fig.1.
Fig.1: Synchronous Design
This types of design is comparatively fast
than other design. But, since the clock frequency is
acting on each blocks during the whole operation
time, the power consumption is more. On the other
hand, the clock period of the global clock must be
keep large enough than the worst case performance
of the slowest operation. Otherwise, we face the
problem regarding “clock skew”, shown in Fig.2.
Fig.2: Clock Skew
On the other hand, the fundamental
characteristic of Asynchronous design is, it is fully
event dependant. That means, the output of a block
depends on the output of previous block. And when
a particular block performs, the other blocks are
paused. So, it do not misuse the clock. As in Fig.3.
Srijan Chatterjee, V.V.Subrahmanya Kumar Bhajana / International Journal of Engineering
Research and Applications (IJERA) ISSN: 2248-9622 www.ijera.com
Vol. 3, Issue 3, May-Jun 2013, pp.543-547
544 | P a g e
Fig.3: Asynchronous Design
Last but not the least, in the case of master – slave
design, the master circuit performs at a particular
edge or level of the clock and the slave circuit
performs at the other edge or level of the clock. As
in Fig.4.
Fig.4: Master – Slave Model
2. ASYNCHRONOUS MECHANISM
Previously introduced asynchronous
design are based on “Handshaking Technique”. In
that case, the power consumption was reduced than
the synchronous model. But the design of the
Handshaking model is very complex. In this paper
a new clock controlling technique is introduced
which is more easier to write codes and implement.
2.1 Clock Controlling Technique
In the asynchronous implementation of the
microcontroller, the synchronization between any
two blocks is implemented through a “clock
enabling signal”, which will be controlled by the
previous block. When the operation of a block will
be done, a high signal will be generated. The signal
will be the clock enabling signal for the next block,
then the clock will act on the next block. Clock
controlling technique block diagram depicted in
fig.5.
Fig.5: Clock Controlling Technique
2.2 Block Diagram of basic blocks of
Microcontroller
Fig.6: Block diagram of basic blocks of a
microcontroller
A block diagram of basic blocks of
microcontroller is illustrated in fig.6. The ALU gets
instructions from decoder and two operand
externally. Then it processes and send the result to
RAM and store the result to register via RAM.
2.3 Proposed Architecture
Fig.7: Proposed Architecture of Microcontroller
Where,
trf_ins: transfer instructions from decoder to ALU.
CE_1_2: Clock enable signal from stage 1 to stage
2.
CEdec (same as CE_1_2): Clock enable by
decoder.
CE_2_3: Clock enable signal from stage 2 to stage
3.
CEalu (same as CE_2_3): Clock enable by ALU.
2.4 Working Principle
Fig.7 shows that the proposed architecture
of asynchronous microcontroller. This
microcontroller can perform sixteen arithmetic and
logical operations viz. add, subtraction,
multiplication, division, compare, shift right, shift
left, increment, decrement, AND, OR, NOT,
NAND, NOR, XOR, XNOR. These will be selected
by a 4 to 16 decoder.
This decoder has one output named “ACE
(ALU Clock Enable)”. It will be high when any one
out of the sixteen operations will be selected. This
signal will enable the clock for ALU, then ALU
will perform.
ALU can performs above sixteen
operations on two 8bit operands. ALU gets sixteen
operation bits from decoder and two 8bit numbers
which are user defined.
On the basis of sixteen operation bits ALU
generates 16bit result. After completing any
Srijan Chatterjee, V.V.Subrahmanya Kumar Bhajana / International Journal of Engineering
Research and Applications (IJERA) ISSN: 2248-9622 www.ijera.com
Vol. 3, Issue 3, May-Jun 2013, pp.543-547
545 | P a g e
operations among the above sixteen it generates
one high signal “RCE (RAM & register Clock
Enable)” to enable clock for RAM and register
together as before decoder did for the ALU.
Whenever the register become clock enable the
“en_off” bit will be zero, it will disable the
decoder. So, the clock enable output of the decoder
will be also zero. As a result, ALU will be
deactivated. When the RAM is clock enabled, the
result from ALU, enters to the RAM and when the
“w (write)” bit of the RAM become high, the result
is stored to the register.
For this part, we have to first input two
8bit numbers then have to select 4bit decoder input
for a particular operation then have to make enable
the decoder and at last have to make high the write
bit of the RAM to store the result.
3. SIMULATION RESULTS
The simulation results are performed using
Xilinx. The schematic of proposed architecture is
shown in Fig.8. The simulations are performed for
the operations add, subtraction, multiplication,
division, compare, shift right, AND and OR. The
obtained results are depicted in Fig.9 to Fig.16.
Fig.8: Schematic diagram of the microcontroller
Fig.9: Simulated result of ADD operation
This is the simulation result for ADD
(4+3) operation. Whenever enable is ON and
decoder gets 4bit data then 16bit data and clock
enable signal for ALU are generated. After that
ALU gets two 8bit data and generates result and
clock enable signal for next stage.
When the „w‟ is high, the result transferred to
register and saved. And the „en_off‟ bit will go to
zero. As a result decoder is OFF.
In this is way total operation is completed.
As follows:
Fig.10: Simulated result of SUB (4-3) operation
Fig.11: Simulated result of MUL (4*3) operation
Fig.12: Simulated result of DIV (4/2) operation
Srijan Chatterjee, V.V.Subrahmanya Kumar Bhajana / International Journal of Engineering
Research and Applications (IJERA) ISSN: 2248-9622 www.ijera.com
Vol. 3, Issue 3, May-Jun 2013, pp.543-547
546 | P a g e
Fig.13: Simulated result of COMP between 2 and 1
This is the simulation result of comparison between
2 and 1. If first input „a‟ is larger than second input
„b‟ then the output will be 1, otherwise 0.
Fig.14: Simulated result of Right Shift (4 shifted by
2bit)
Fig.15: Simulated result of AND operation (1 AND
1)
Fig.16: Simulated result of OR operation (4 OR 1)
4. CONCLUSION
This paper is mainly deals with the
simulation and its implementation of the
asynchronous design of an 8bit microcontroller
with clock controlling technique. Using which
technique in a circuit block we can make activated
the working block only and the other blocks are
paused.
The above technique is very much useful in low
power applications viz. Bio medical instruments,
mobile phones etc.
5. ACKNOWLEDGEMENT
First of all I would like to thank my guide
B.V.V.Subrahmanya Kumar for guiding me
throughout the research part of the thesis. I am
really privileged to have opportunity to work with
him.
I will also thank Prof. S.K.Mandal
(Associate Dean, School of Electronics
Engineering, KIIT University, Bhubaneswar,
Orissa) for supporting me throughout my research
work. I am also thankful to Assistant Professor Mr.
Ankit Shivare for all his guidance and pleasant
work everyday in the lab. I am also thankful to all
the staffs and employees of School of Electronics
Engineering of KIIT University.
I am really also grateful to my friends
Pratik Ganguly and Abhinab Anand for all their
helping hands during my days of research.
Finally, last but not the least I pay all my sincere
gratitude towards my loving mother and caring
father for supporting throughout my sorrow and
best days of my life.
REFERENCES
[1] Raj Kamal, Embedded systems (The
McGraw Hill Companies)
[2] Muhammad Ali Mzidi, Janice Gillispie
Mazidi, The 8051 microcontroller and
embedded sysytems
[3] Peter Marwedel, Embedded system design
(Springer)
Srijan Chatterjee, V.V.Subrahmanya Kumar Bhajana / International Journal of Engineering
Research and Applications (IJERA) ISSN: 2248-9622 www.ijera.com
Vol. 3, Issue 3, May-Jun 2013, pp.543-547
547 | P a g e
[4] Kok – Leong Chang, Bah – Hwee Gwee,
Centre for Integrated Circuits and
Systems, Nayang Technological
University, Singapore, A low – energy low
– voltage asynchronous 8051
microcontroller core, 2006 IEEE.
[5] Hans van Gageldonk, Eindhoven
University of Technology, The
Netherlands, Kees van Berkel, Ad Peeters,
Philips Research Laboratories, The
Netherlands, Daniel Baumann, Daniel
Gloor, Gerhard Stegmann, Philips
Semiconductors, Zurich, Switzerland, An
asynchronous low – power 80C51
microcontroller.
[6] Kok – Leong Chang and Bah – Hwee
Gwee, Centre for Integrated Circuits and
Systems, Nayang Technological
University, Singapore, Yuanjin Zheng,
Integrated Circuits and Systems
Laboratory, Institute of Microelectronics,
Singapore, A semi – custom memory
design for an asynchronous 8051
microcontroller, 2008 IEEE.
[7] YU Ying, ZHOU Lei, MIN Hao, ASIC &
System State – Key Lab, Fudan
University, Shanghai, China, Design and
vlsi implementation of an asynchronous
low power microcontroller.
[8] Jamin M.C.Tse and Daniel P.K.Lun,
Department of Electronics Engineering,
The Hong Kong polytechnique University,
Hong Kong, Asynmpu: a fully
asynchronous cics micro – processor,
1997 IEEE International Symposium on
Circuits and Systems, June 9 – 12, 1997.
[9] Hans Jacobson, Department of Computer
Engineering, Lulea University of
Technology, Asynchronous circuit design,
May 1996.

More Related Content

What's hot

IRJET-Hardware Co-Simulation of Classical Edge Detection Algorithms using Xil...
IRJET-Hardware Co-Simulation of Classical Edge Detection Algorithms using Xil...IRJET-Hardware Co-Simulation of Classical Edge Detection Algorithms using Xil...
IRJET-Hardware Co-Simulation of Classical Edge Detection Algorithms using Xil...
IRJET Journal
 
Modeling and Real-Time Simulation of Induction Motor Using RT-LAB
Modeling and Real-Time Simulation of Induction Motor Using RT-LABModeling and Real-Time Simulation of Induction Motor Using RT-LAB
Modeling and Real-Time Simulation of Induction Motor Using RT-LAB
International Journal of Power Electronics and Drive Systems
 
VLSI Final Design Project
VLSI Final Design ProjectVLSI Final Design Project
VLSI Final Design Project
Vignesh Ganesan
 
A Computers Architecture project on Barrel shifters
A Computers Architecture project on Barrel shiftersA Computers Architecture project on Barrel shifters
A Computers Architecture project on Barrel shifters
svrohith 9
 
Fuzzy Control of Yaw and Roll Angles of a Simulated Helicopter Model Includes...
Fuzzy Control of Yaw and Roll Angles of a Simulated Helicopter Model Includes...Fuzzy Control of Yaw and Roll Angles of a Simulated Helicopter Model Includes...
Fuzzy Control of Yaw and Roll Angles of a Simulated Helicopter Model Includes...
ijeei-iaes
 
186 193
186 193186 193
The Data Acquisition and Processing Based on MEMS Accelerometer
The Data Acquisition and Processing Based on MEMS AccelerometerThe Data Acquisition and Processing Based on MEMS Accelerometer
The Data Acquisition and Processing Based on MEMS Accelerometer
IJRES Journal
 
Floating point units
Floating point unitsFloating point units
Floating point units
dipugovind
 
Design of low power barrel shifter and rotator using two phase clocked adiaba...
Design of low power barrel shifter and rotator using two phase clocked adiaba...Design of low power barrel shifter and rotator using two phase clocked adiaba...
Design of low power barrel shifter and rotator using two phase clocked adiaba...
eSAT Publishing House
 
VLSI Design Final Project - 32 bit ALU
VLSI Design Final Project - 32 bit ALUVLSI Design Final Project - 32 bit ALU
VLSI Design Final Project - 32 bit ALU
Sachin Kumar Asokan
 
A Comparative Study of PID and Fuzzy Controller for Speed Control of Brushles...
A Comparative Study of PID and Fuzzy Controller for Speed Control of Brushles...A Comparative Study of PID and Fuzzy Controller for Speed Control of Brushles...
A Comparative Study of PID and Fuzzy Controller for Speed Control of Brushles...
IRJET Journal
 
Fabric design pattern feeding through human machine interface (hmi) for an el...
Fabric design pattern feeding through human machine interface (hmi) for an el...Fabric design pattern feeding through human machine interface (hmi) for an el...
Fabric design pattern feeding through human machine interface (hmi) for an el...
eSAT Journals
 
Virtual Lab for Electronics
Virtual Lab for ElectronicsVirtual Lab for Electronics
Virtual Lab for Electronics
IRJET Journal
 
CE150--Hongyi Huang
CE150--Hongyi HuangCE150--Hongyi Huang
CE150--Hongyi Huang
Bridget (Hongyi) Huang
 
Clock gated and enable-controlled 64-bit alu architecture for low-power appli...
Clock gated and enable-controlled 64-bit alu architecture for low-power appli...Clock gated and enable-controlled 64-bit alu architecture for low-power appli...
Clock gated and enable-controlled 64-bit alu architecture for low-power appli...
eSAT Journals
 
Bharat gargi final project report
Bharat gargi final project reportBharat gargi final project report
Bharat gargi final project report
Bharat Biyani
 
Active Disturbance Rejection Control
Active Disturbance Rejection ControlActive Disturbance Rejection Control
Active Disturbance Rejection Control
Amol Galande
 
Adaptive Functional-Based Neuro-Fuzzy-PID Incremental Controller Structure
Adaptive Functional-Based Neuro-Fuzzy-PID Incremental Controller StructureAdaptive Functional-Based Neuro-Fuzzy-PID Incremental Controller Structure
Adaptive Functional-Based Neuro-Fuzzy-PID Incremental Controller Structure
ijeei-iaes
 

What's hot (18)

IRJET-Hardware Co-Simulation of Classical Edge Detection Algorithms using Xil...
IRJET-Hardware Co-Simulation of Classical Edge Detection Algorithms using Xil...IRJET-Hardware Co-Simulation of Classical Edge Detection Algorithms using Xil...
IRJET-Hardware Co-Simulation of Classical Edge Detection Algorithms using Xil...
 
Modeling and Real-Time Simulation of Induction Motor Using RT-LAB
Modeling and Real-Time Simulation of Induction Motor Using RT-LABModeling and Real-Time Simulation of Induction Motor Using RT-LAB
Modeling and Real-Time Simulation of Induction Motor Using RT-LAB
 
VLSI Final Design Project
VLSI Final Design ProjectVLSI Final Design Project
VLSI Final Design Project
 
A Computers Architecture project on Barrel shifters
A Computers Architecture project on Barrel shiftersA Computers Architecture project on Barrel shifters
A Computers Architecture project on Barrel shifters
 
Fuzzy Control of Yaw and Roll Angles of a Simulated Helicopter Model Includes...
Fuzzy Control of Yaw and Roll Angles of a Simulated Helicopter Model Includes...Fuzzy Control of Yaw and Roll Angles of a Simulated Helicopter Model Includes...
Fuzzy Control of Yaw and Roll Angles of a Simulated Helicopter Model Includes...
 
186 193
186 193186 193
186 193
 
The Data Acquisition and Processing Based on MEMS Accelerometer
The Data Acquisition and Processing Based on MEMS AccelerometerThe Data Acquisition and Processing Based on MEMS Accelerometer
The Data Acquisition and Processing Based on MEMS Accelerometer
 
Floating point units
Floating point unitsFloating point units
Floating point units
 
Design of low power barrel shifter and rotator using two phase clocked adiaba...
Design of low power barrel shifter and rotator using two phase clocked adiaba...Design of low power barrel shifter and rotator using two phase clocked adiaba...
Design of low power barrel shifter and rotator using two phase clocked adiaba...
 
VLSI Design Final Project - 32 bit ALU
VLSI Design Final Project - 32 bit ALUVLSI Design Final Project - 32 bit ALU
VLSI Design Final Project - 32 bit ALU
 
A Comparative Study of PID and Fuzzy Controller for Speed Control of Brushles...
A Comparative Study of PID and Fuzzy Controller for Speed Control of Brushles...A Comparative Study of PID and Fuzzy Controller for Speed Control of Brushles...
A Comparative Study of PID and Fuzzy Controller for Speed Control of Brushles...
 
Fabric design pattern feeding through human machine interface (hmi) for an el...
Fabric design pattern feeding through human machine interface (hmi) for an el...Fabric design pattern feeding through human machine interface (hmi) for an el...
Fabric design pattern feeding through human machine interface (hmi) for an el...
 
Virtual Lab for Electronics
Virtual Lab for ElectronicsVirtual Lab for Electronics
Virtual Lab for Electronics
 
CE150--Hongyi Huang
CE150--Hongyi HuangCE150--Hongyi Huang
CE150--Hongyi Huang
 
Clock gated and enable-controlled 64-bit alu architecture for low-power appli...
Clock gated and enable-controlled 64-bit alu architecture for low-power appli...Clock gated and enable-controlled 64-bit alu architecture for low-power appli...
Clock gated and enable-controlled 64-bit alu architecture for low-power appli...
 
Bharat gargi final project report
Bharat gargi final project reportBharat gargi final project report
Bharat gargi final project report
 
Active Disturbance Rejection Control
Active Disturbance Rejection ControlActive Disturbance Rejection Control
Active Disturbance Rejection Control
 
Adaptive Functional-Based Neuro-Fuzzy-PID Incremental Controller Structure
Adaptive Functional-Based Neuro-Fuzzy-PID Incremental Controller StructureAdaptive Functional-Based Neuro-Fuzzy-PID Incremental Controller Structure
Adaptive Functional-Based Neuro-Fuzzy-PID Incremental Controller Structure
 

Viewers also liked

Ci33514517
Ci33514517Ci33514517
Ci33514517
IJERA Editor
 
Ch33509513
Ch33509513Ch33509513
Ch33509513
IJERA Editor
 
Pd3426592664
Pd3426592664Pd3426592664
Pd3426592664
IJERA Editor
 
Oc3424632467
Oc3424632467Oc3424632467
Oc3424632467
IJERA Editor
 
Oq3425482554
Oq3425482554Oq3425482554
Oq3425482554
IJERA Editor
 
Ot3425662590
Ot3425662590Ot3425662590
Ot3425662590
IJERA Editor
 
Z35149151
Z35149151Z35149151
Z35149151
IJERA Editor
 
Pe3426652670
Pe3426652670Pe3426652670
Pe3426652670
IJERA Editor
 
Q358895
Q358895Q358895
Q358895
IJERA Editor
 
Oa3424532456
Oa3424532456Oa3424532456
Oa3424532456
IJERA Editor
 
W35124128
W35124128W35124128
W35124128
IJERA Editor
 
Bd33327330
Bd33327330Bd33327330
Bd33327330
IJERA Editor
 
Bz33462466
Bz33462466Bz33462466
Bz33462466
IJERA Editor
 
Am33223232
Am33223232Am33223232
Am33223232
IJERA Editor
 
Au33270273
Au33270273Au33270273
Au33270273
IJERA Editor
 
Bf33335340
Bf33335340Bf33335340
Bf33335340
IJERA Editor
 
Ai33194200
Ai33194200Ai33194200
Ai33194200
IJERA Editor
 
Af33174179
Af33174179Af33174179
Af33174179
IJERA Editor
 
Av33274282
Av33274282Av33274282
Av33274282
IJERA Editor
 

Viewers also liked (19)

Ci33514517
Ci33514517Ci33514517
Ci33514517
 
Ch33509513
Ch33509513Ch33509513
Ch33509513
 
Pd3426592664
Pd3426592664Pd3426592664
Pd3426592664
 
Oc3424632467
Oc3424632467Oc3424632467
Oc3424632467
 
Oq3425482554
Oq3425482554Oq3425482554
Oq3425482554
 
Ot3425662590
Ot3425662590Ot3425662590
Ot3425662590
 
Z35149151
Z35149151Z35149151
Z35149151
 
Pe3426652670
Pe3426652670Pe3426652670
Pe3426652670
 
Q358895
Q358895Q358895
Q358895
 
Oa3424532456
Oa3424532456Oa3424532456
Oa3424532456
 
W35124128
W35124128W35124128
W35124128
 
Bd33327330
Bd33327330Bd33327330
Bd33327330
 
Bz33462466
Bz33462466Bz33462466
Bz33462466
 
Am33223232
Am33223232Am33223232
Am33223232
 
Au33270273
Au33270273Au33270273
Au33270273
 
Bf33335340
Bf33335340Bf33335340
Bf33335340
 
Ai33194200
Ai33194200Ai33194200
Ai33194200
 
Af33174179
Af33174179Af33174179
Af33174179
 
Av33274282
Av33274282Av33274282
Av33274282
 

Similar to Cn33543547

SYSTEM ON PROGRAMMABLE CHIP FOR PERFOMANCE ESTIMATION OF LOOM MACHINE
SYSTEM ON PROGRAMMABLE CHIP FOR PERFOMANCE ESTIMATION OF LOOM MACHINESYSTEM ON PROGRAMMABLE CHIP FOR PERFOMANCE ESTIMATION OF LOOM MACHINE
SYSTEM ON PROGRAMMABLE CHIP FOR PERFOMANCE ESTIMATION OF LOOM MACHINE
VLSICS Design
 
International Journal of Computational Engineering Research(IJCER)
International Journal of Computational Engineering Research(IJCER)International Journal of Computational Engineering Research(IJCER)
International Journal of Computational Engineering Research(IJCER)
ijceronline
 
Design of 16 bit low power processor using clock gating technique 2-3
Design of 16 bit low power processor using clock gating technique 2-3Design of 16 bit low power processor using clock gating technique 2-3
Design of 16 bit low power processor using clock gating technique 2-3
IAEME Publication
 
Design & implementation of 16 bit low power ALU with clock gating
Design & implementation of 16 bit low power ALU with clock gatingDesign & implementation of 16 bit low power ALU with clock gating
Design & implementation of 16 bit low power ALU with clock gating
IRJET Journal
 
Design_amp_analysis_of_16_bit_RISC_processor_using_low_power_pipelining.pdf
Design_amp_analysis_of_16_bit_RISC_processor_using_low_power_pipelining.pdfDesign_amp_analysis_of_16_bit_RISC_processor_using_low_power_pipelining.pdf
Design_amp_analysis_of_16_bit_RISC_processor_using_low_power_pipelining.pdf
ssuser1e1bab
 
Design and Implementation of Single Precision Pipelined Floating Point Co-Pro...
Design and Implementation of Single Precision Pipelined Floating Point Co-Pro...Design and Implementation of Single Precision Pipelined Floating Point Co-Pro...
Design and Implementation of Single Precision Pipelined Floating Point Co-Pro...
Silicon Mentor
 
Implementation of an arithmetic logic using area efficient carry lookahead adder
Implementation of an arithmetic logic using area efficient carry lookahead adderImplementation of an arithmetic logic using area efficient carry lookahead adder
Implementation of an arithmetic logic using area efficient carry lookahead adder
VLSICS Design
 
Low Power Area Efficient Parallel Counter Architecture
Low Power Area Efficient Parallel Counter ArchitectureLow Power Area Efficient Parallel Counter Architecture
Low Power Area Efficient Parallel Counter Architecture
International Journal of Science and Research (IJSR)
 
IRJET- Arithmetic Logic Unit Design with Comparison Power Consumption on Diff...
IRJET- Arithmetic Logic Unit Design with Comparison Power Consumption on Diff...IRJET- Arithmetic Logic Unit Design with Comparison Power Consumption on Diff...
IRJET- Arithmetic Logic Unit Design with Comparison Power Consumption on Diff...
IRJET Journal
 
Gate level-design-of-a-digital-clock
Gate level-design-of-a-digital-clockGate level-design-of-a-digital-clock
Gate level-design-of-a-digital-clock
Andrei-Valerian Iftime
 
Optimized Layout Design of Priority Encoder using 65nm Technology
Optimized Layout Design of Priority Encoder using 65nm TechnologyOptimized Layout Design of Priority Encoder using 65nm Technology
Optimized Layout Design of Priority Encoder using 65nm Technology
IJEEE
 
IJSRED-V2I3P91
IJSRED-V2I3P91IJSRED-V2I3P91
IJSRED-V2I3P91
IJSRED
 
IJSRED-V2I3P91
IJSRED-V2I3P91IJSRED-V2I3P91
IJSRED-V2I3P91
IJSRED
 
D0255033039
D0255033039D0255033039
D0255033039
theijes
 
Layout Design Comparison of CMOS and Gate
Layout Design Comparison of CMOS  and Gate Layout Design Comparison of CMOS  and Gate
Layout Design Comparison of CMOS and Gate
IJEEE
 
25. 23248.pdf
25. 23248.pdf25. 23248.pdf
25. 23248.pdf
TELKOMNIKA JOURNAL
 
Study of model predictive control using ni lab view
Study of model predictive control using ni lab viewStudy of model predictive control using ni lab view
Study of model predictive control using ni lab view
IAEME Publication
 
Study of model predictive control using ni lab view
Study of model predictive control using ni lab viewStudy of model predictive control using ni lab view
Study of model predictive control using ni lab view
iaemedu
 
Study of model predictive control using ni lab view
Study of model predictive control using ni lab viewStudy of model predictive control using ni lab view
Study of model predictive control using ni lab view
iaemedu
 
Fpga implementation of a functional microcontroller
Fpga implementation of a functional microcontrollerFpga implementation of a functional microcontroller
Fpga implementation of a functional microcontroller
eSAT Publishing House
 

Similar to Cn33543547 (20)

SYSTEM ON PROGRAMMABLE CHIP FOR PERFOMANCE ESTIMATION OF LOOM MACHINE
SYSTEM ON PROGRAMMABLE CHIP FOR PERFOMANCE ESTIMATION OF LOOM MACHINESYSTEM ON PROGRAMMABLE CHIP FOR PERFOMANCE ESTIMATION OF LOOM MACHINE
SYSTEM ON PROGRAMMABLE CHIP FOR PERFOMANCE ESTIMATION OF LOOM MACHINE
 
International Journal of Computational Engineering Research(IJCER)
International Journal of Computational Engineering Research(IJCER)International Journal of Computational Engineering Research(IJCER)
International Journal of Computational Engineering Research(IJCER)
 
Design of 16 bit low power processor using clock gating technique 2-3
Design of 16 bit low power processor using clock gating technique 2-3Design of 16 bit low power processor using clock gating technique 2-3
Design of 16 bit low power processor using clock gating technique 2-3
 
Design & implementation of 16 bit low power ALU with clock gating
Design & implementation of 16 bit low power ALU with clock gatingDesign & implementation of 16 bit low power ALU with clock gating
Design & implementation of 16 bit low power ALU with clock gating
 
Design_amp_analysis_of_16_bit_RISC_processor_using_low_power_pipelining.pdf
Design_amp_analysis_of_16_bit_RISC_processor_using_low_power_pipelining.pdfDesign_amp_analysis_of_16_bit_RISC_processor_using_low_power_pipelining.pdf
Design_amp_analysis_of_16_bit_RISC_processor_using_low_power_pipelining.pdf
 
Design and Implementation of Single Precision Pipelined Floating Point Co-Pro...
Design and Implementation of Single Precision Pipelined Floating Point Co-Pro...Design and Implementation of Single Precision Pipelined Floating Point Co-Pro...
Design and Implementation of Single Precision Pipelined Floating Point Co-Pro...
 
Implementation of an arithmetic logic using area efficient carry lookahead adder
Implementation of an arithmetic logic using area efficient carry lookahead adderImplementation of an arithmetic logic using area efficient carry lookahead adder
Implementation of an arithmetic logic using area efficient carry lookahead adder
 
Low Power Area Efficient Parallel Counter Architecture
Low Power Area Efficient Parallel Counter ArchitectureLow Power Area Efficient Parallel Counter Architecture
Low Power Area Efficient Parallel Counter Architecture
 
IRJET- Arithmetic Logic Unit Design with Comparison Power Consumption on Diff...
IRJET- Arithmetic Logic Unit Design with Comparison Power Consumption on Diff...IRJET- Arithmetic Logic Unit Design with Comparison Power Consumption on Diff...
IRJET- Arithmetic Logic Unit Design with Comparison Power Consumption on Diff...
 
Gate level-design-of-a-digital-clock
Gate level-design-of-a-digital-clockGate level-design-of-a-digital-clock
Gate level-design-of-a-digital-clock
 
Optimized Layout Design of Priority Encoder using 65nm Technology
Optimized Layout Design of Priority Encoder using 65nm TechnologyOptimized Layout Design of Priority Encoder using 65nm Technology
Optimized Layout Design of Priority Encoder using 65nm Technology
 
IJSRED-V2I3P91
IJSRED-V2I3P91IJSRED-V2I3P91
IJSRED-V2I3P91
 
IJSRED-V2I3P91
IJSRED-V2I3P91IJSRED-V2I3P91
IJSRED-V2I3P91
 
D0255033039
D0255033039D0255033039
D0255033039
 
Layout Design Comparison of CMOS and Gate
Layout Design Comparison of CMOS  and Gate Layout Design Comparison of CMOS  and Gate
Layout Design Comparison of CMOS and Gate
 
25. 23248.pdf
25. 23248.pdf25. 23248.pdf
25. 23248.pdf
 
Study of model predictive control using ni lab view
Study of model predictive control using ni lab viewStudy of model predictive control using ni lab view
Study of model predictive control using ni lab view
 
Study of model predictive control using ni lab view
Study of model predictive control using ni lab viewStudy of model predictive control using ni lab view
Study of model predictive control using ni lab view
 
Study of model predictive control using ni lab view
Study of model predictive control using ni lab viewStudy of model predictive control using ni lab view
Study of model predictive control using ni lab view
 
Fpga implementation of a functional microcontroller
Fpga implementation of a functional microcontrollerFpga implementation of a functional microcontroller
Fpga implementation of a functional microcontroller
 

Recently uploaded

Introduction of Cybersecurity with OSS at Code Europe 2024
Introduction of Cybersecurity with OSS  at Code Europe 2024Introduction of Cybersecurity with OSS  at Code Europe 2024
Introduction of Cybersecurity with OSS at Code Europe 2024
Hiroshi SHIBATA
 
Deep Dive: AI-Powered Marketing to Get More Leads and Customers with HyperGro...
Deep Dive: AI-Powered Marketing to Get More Leads and Customers with HyperGro...Deep Dive: AI-Powered Marketing to Get More Leads and Customers with HyperGro...
Deep Dive: AI-Powered Marketing to Get More Leads and Customers with HyperGro...
saastr
 
Recommendation System using RAG Architecture
Recommendation System using RAG ArchitectureRecommendation System using RAG Architecture
Recommendation System using RAG Architecture
fredae14
 
Salesforce Integration for Bonterra Impact Management (fka Social Solutions A...
Salesforce Integration for Bonterra Impact Management (fka Social Solutions A...Salesforce Integration for Bonterra Impact Management (fka Social Solutions A...
Salesforce Integration for Bonterra Impact Management (fka Social Solutions A...
Jeffrey Haguewood
 
Ocean lotus Threat actors project by John Sitima 2024 (1).pptx
Ocean lotus Threat actors project by John Sitima 2024 (1).pptxOcean lotus Threat actors project by John Sitima 2024 (1).pptx
Ocean lotus Threat actors project by John Sitima 2024 (1).pptx
SitimaJohn
 
UI5 Controls simplified - UI5con2024 presentation
UI5 Controls simplified - UI5con2024 presentationUI5 Controls simplified - UI5con2024 presentation
UI5 Controls simplified - UI5con2024 presentation
Wouter Lemaire
 
How to Get CNIC Information System with Paksim Ga.pptx
How to Get CNIC Information System with Paksim Ga.pptxHow to Get CNIC Information System with Paksim Ga.pptx
How to Get CNIC Information System with Paksim Ga.pptx
danishmna97
 
Energy Efficient Video Encoding for Cloud and Edge Computing Instances
Energy Efficient Video Encoding for Cloud and Edge Computing InstancesEnergy Efficient Video Encoding for Cloud and Edge Computing Instances
Energy Efficient Video Encoding for Cloud and Edge Computing Instances
Alpen-Adria-Universität
 
Serial Arm Control in Real Time Presentation
Serial Arm Control in Real Time PresentationSerial Arm Control in Real Time Presentation
Serial Arm Control in Real Time Presentation
tolgahangng
 
National Security Agency - NSA mobile device best practices
National Security Agency - NSA mobile device best practicesNational Security Agency - NSA mobile device best practices
National Security Agency - NSA mobile device best practices
Quotidiano Piemontese
 
Skybuffer SAM4U tool for SAP license adoption
Skybuffer SAM4U tool for SAP license adoptionSkybuffer SAM4U tool for SAP license adoption
Skybuffer SAM4U tool for SAP license adoption
Tatiana Kojar
 
Choosing The Best AWS Service For Your Website + API.pptx
Choosing The Best AWS Service For Your Website + API.pptxChoosing The Best AWS Service For Your Website + API.pptx
Choosing The Best AWS Service For Your Website + API.pptx
Brandon Minnick, MBA
 
GraphRAG for Life Science to increase LLM accuracy
GraphRAG for Life Science to increase LLM accuracyGraphRAG for Life Science to increase LLM accuracy
GraphRAG for Life Science to increase LLM accuracy
Tomaz Bratanic
 
20240607 QFM018 Elixir Reading List May 2024
20240607 QFM018 Elixir Reading List May 202420240607 QFM018 Elixir Reading List May 2024
20240607 QFM018 Elixir Reading List May 2024
Matthew Sinclair
 
How to Interpret Trends in the Kalyan Rajdhani Mix Chart.pdf
How to Interpret Trends in the Kalyan Rajdhani Mix Chart.pdfHow to Interpret Trends in the Kalyan Rajdhani Mix Chart.pdf
How to Interpret Trends in the Kalyan Rajdhani Mix Chart.pdf
Chart Kalyan
 
Let's Integrate MuleSoft RPA, COMPOSER, APM with AWS IDP along with Slack
Let's Integrate MuleSoft RPA, COMPOSER, APM with AWS IDP along with SlackLet's Integrate MuleSoft RPA, COMPOSER, APM with AWS IDP along with Slack
Let's Integrate MuleSoft RPA, COMPOSER, APM with AWS IDP along with Slack
shyamraj55
 
Webinar: Designing a schema for a Data Warehouse
Webinar: Designing a schema for a Data WarehouseWebinar: Designing a schema for a Data Warehouse
Webinar: Designing a schema for a Data Warehouse
Federico Razzoli
 
HCL Notes and Domino License Cost Reduction in the World of DLAU
HCL Notes and Domino License Cost Reduction in the World of DLAUHCL Notes and Domino License Cost Reduction in the World of DLAU
HCL Notes and Domino License Cost Reduction in the World of DLAU
panagenda
 
Cosa hanno in comune un mattoncino Lego e la backdoor XZ?
Cosa hanno in comune un mattoncino Lego e la backdoor XZ?Cosa hanno in comune un mattoncino Lego e la backdoor XZ?
Cosa hanno in comune un mattoncino Lego e la backdoor XZ?
Speck&Tech
 
5th LF Energy Power Grid Model Meet-up Slides
5th LF Energy Power Grid Model Meet-up Slides5th LF Energy Power Grid Model Meet-up Slides
5th LF Energy Power Grid Model Meet-up Slides
DanBrown980551
 

Recently uploaded (20)

Introduction of Cybersecurity with OSS at Code Europe 2024
Introduction of Cybersecurity with OSS  at Code Europe 2024Introduction of Cybersecurity with OSS  at Code Europe 2024
Introduction of Cybersecurity with OSS at Code Europe 2024
 
Deep Dive: AI-Powered Marketing to Get More Leads and Customers with HyperGro...
Deep Dive: AI-Powered Marketing to Get More Leads and Customers with HyperGro...Deep Dive: AI-Powered Marketing to Get More Leads and Customers with HyperGro...
Deep Dive: AI-Powered Marketing to Get More Leads and Customers with HyperGro...
 
Recommendation System using RAG Architecture
Recommendation System using RAG ArchitectureRecommendation System using RAG Architecture
Recommendation System using RAG Architecture
 
Salesforce Integration for Bonterra Impact Management (fka Social Solutions A...
Salesforce Integration for Bonterra Impact Management (fka Social Solutions A...Salesforce Integration for Bonterra Impact Management (fka Social Solutions A...
Salesforce Integration for Bonterra Impact Management (fka Social Solutions A...
 
Ocean lotus Threat actors project by John Sitima 2024 (1).pptx
Ocean lotus Threat actors project by John Sitima 2024 (1).pptxOcean lotus Threat actors project by John Sitima 2024 (1).pptx
Ocean lotus Threat actors project by John Sitima 2024 (1).pptx
 
UI5 Controls simplified - UI5con2024 presentation
UI5 Controls simplified - UI5con2024 presentationUI5 Controls simplified - UI5con2024 presentation
UI5 Controls simplified - UI5con2024 presentation
 
How to Get CNIC Information System with Paksim Ga.pptx
How to Get CNIC Information System with Paksim Ga.pptxHow to Get CNIC Information System with Paksim Ga.pptx
How to Get CNIC Information System with Paksim Ga.pptx
 
Energy Efficient Video Encoding for Cloud and Edge Computing Instances
Energy Efficient Video Encoding for Cloud and Edge Computing InstancesEnergy Efficient Video Encoding for Cloud and Edge Computing Instances
Energy Efficient Video Encoding for Cloud and Edge Computing Instances
 
Serial Arm Control in Real Time Presentation
Serial Arm Control in Real Time PresentationSerial Arm Control in Real Time Presentation
Serial Arm Control in Real Time Presentation
 
National Security Agency - NSA mobile device best practices
National Security Agency - NSA mobile device best practicesNational Security Agency - NSA mobile device best practices
National Security Agency - NSA mobile device best practices
 
Skybuffer SAM4U tool for SAP license adoption
Skybuffer SAM4U tool for SAP license adoptionSkybuffer SAM4U tool for SAP license adoption
Skybuffer SAM4U tool for SAP license adoption
 
Choosing The Best AWS Service For Your Website + API.pptx
Choosing The Best AWS Service For Your Website + API.pptxChoosing The Best AWS Service For Your Website + API.pptx
Choosing The Best AWS Service For Your Website + API.pptx
 
GraphRAG for Life Science to increase LLM accuracy
GraphRAG for Life Science to increase LLM accuracyGraphRAG for Life Science to increase LLM accuracy
GraphRAG for Life Science to increase LLM accuracy
 
20240607 QFM018 Elixir Reading List May 2024
20240607 QFM018 Elixir Reading List May 202420240607 QFM018 Elixir Reading List May 2024
20240607 QFM018 Elixir Reading List May 2024
 
How to Interpret Trends in the Kalyan Rajdhani Mix Chart.pdf
How to Interpret Trends in the Kalyan Rajdhani Mix Chart.pdfHow to Interpret Trends in the Kalyan Rajdhani Mix Chart.pdf
How to Interpret Trends in the Kalyan Rajdhani Mix Chart.pdf
 
Let's Integrate MuleSoft RPA, COMPOSER, APM with AWS IDP along with Slack
Let's Integrate MuleSoft RPA, COMPOSER, APM with AWS IDP along with SlackLet's Integrate MuleSoft RPA, COMPOSER, APM with AWS IDP along with Slack
Let's Integrate MuleSoft RPA, COMPOSER, APM with AWS IDP along with Slack
 
Webinar: Designing a schema for a Data Warehouse
Webinar: Designing a schema for a Data WarehouseWebinar: Designing a schema for a Data Warehouse
Webinar: Designing a schema for a Data Warehouse
 
HCL Notes and Domino License Cost Reduction in the World of DLAU
HCL Notes and Domino License Cost Reduction in the World of DLAUHCL Notes and Domino License Cost Reduction in the World of DLAU
HCL Notes and Domino License Cost Reduction in the World of DLAU
 
Cosa hanno in comune un mattoncino Lego e la backdoor XZ?
Cosa hanno in comune un mattoncino Lego e la backdoor XZ?Cosa hanno in comune un mattoncino Lego e la backdoor XZ?
Cosa hanno in comune un mattoncino Lego e la backdoor XZ?
 
5th LF Energy Power Grid Model Meet-up Slides
5th LF Energy Power Grid Model Meet-up Slides5th LF Energy Power Grid Model Meet-up Slides
5th LF Energy Power Grid Model Meet-up Slides
 

Cn33543547

  • 1. Srijan Chatterjee, V.V.Subrahmanya Kumar Bhajana / International Journal of Engineering Research and Applications (IJERA) ISSN: 2248-9622 www.ijera.com Vol. 3, Issue 3, May-Jun 2013, pp.543-547 543 | P a g e Design and Implementation of 8 Bit Asynchronous Microcontroller Srijan Chatterjee*, V.V.Subrahmanya Kumar Bhajana** *(M.Tech. VLSI Design and Embedded System, School of Electronics Engineering. KIIT University. Orissa. INDIA) ** (Associate Professor, School of Electronics Engineering. KIIT University. Orissa. INDIA) ABSTRACT The synchronous microcontroller is a common processor found in many embedded system. By using asynchronous design techniques, the performance of the microcontroller is increased. Through the simulation and existing synchronous design tools in the asynchronous design flow, a “clock enabling technique” is simulated and then implemented. The asynchronous architecture includes an ALU, a decoder, a RAM, a register and a clocking element. This paper mainly deals with design of 8 bit asynchronous microcontroller simulation in Verilog using Xilinx. Keywords – ALU, Asynchronous, Clock enabling technique, clock skew, Decoder, Event dependant, Embedded system, Global clock, Handshaking technique, Master-slave, RAM, Register, Synchronous, Time dependant, Verilog, VHDL, Xilinx. 1. INTRODUCTION In synchronous design, the clock period of global clock must be keep large enough than the worst case performance of the slowest operation. But in case if high frequency operation for the gradually increasing of complexity and the size of the circuit, the propagation time of the clock in different paths are different, it may cause the circuit to malfunction. Main drawbacks of the synchronous design are power consumption and clock skew. The main advantages of the asynchronous design are lower power consumption, no clock skew, better technology migration and less global timing issues. 1.1 Asynchronous Design flow with synchronous tools Even though complete asynchronous design solution do not exist, one can make use of existing synchronous design tools in asynchronous design flow. In this flow, each design is partitioned into blocks, and each block is controlled by clock signal and a clock controlling signal. Simulation tool Xilinx is used to simulate the functionality of the asynchronous design. Once the design has been functionally simulated, it must now be implemented. While an entire asynchronous circuit can not be designed in synchronous tool, individual logic blocks can. During the design of the asynchronous microcontroller chip, VHDL (Very high speed integrated circuit Hardware Description Language) or Verilog is used to generate certain blocks. 1.2 Deference between Synchronous, Asynchronous and Master – Slave Design The main characteristics of the synchronous design is, it is completely “Time Dependant”. That means, suppose at t = 2 second we need the output so, all blocks of circuit will generate the output at t = 2 second. As in Fig.1. Fig.1: Synchronous Design This types of design is comparatively fast than other design. But, since the clock frequency is acting on each blocks during the whole operation time, the power consumption is more. On the other hand, the clock period of the global clock must be keep large enough than the worst case performance of the slowest operation. Otherwise, we face the problem regarding “clock skew”, shown in Fig.2. Fig.2: Clock Skew On the other hand, the fundamental characteristic of Asynchronous design is, it is fully event dependant. That means, the output of a block depends on the output of previous block. And when a particular block performs, the other blocks are paused. So, it do not misuse the clock. As in Fig.3.
  • 2. Srijan Chatterjee, V.V.Subrahmanya Kumar Bhajana / International Journal of Engineering Research and Applications (IJERA) ISSN: 2248-9622 www.ijera.com Vol. 3, Issue 3, May-Jun 2013, pp.543-547 544 | P a g e Fig.3: Asynchronous Design Last but not the least, in the case of master – slave design, the master circuit performs at a particular edge or level of the clock and the slave circuit performs at the other edge or level of the clock. As in Fig.4. Fig.4: Master – Slave Model 2. ASYNCHRONOUS MECHANISM Previously introduced asynchronous design are based on “Handshaking Technique”. In that case, the power consumption was reduced than the synchronous model. But the design of the Handshaking model is very complex. In this paper a new clock controlling technique is introduced which is more easier to write codes and implement. 2.1 Clock Controlling Technique In the asynchronous implementation of the microcontroller, the synchronization between any two blocks is implemented through a “clock enabling signal”, which will be controlled by the previous block. When the operation of a block will be done, a high signal will be generated. The signal will be the clock enabling signal for the next block, then the clock will act on the next block. Clock controlling technique block diagram depicted in fig.5. Fig.5: Clock Controlling Technique 2.2 Block Diagram of basic blocks of Microcontroller Fig.6: Block diagram of basic blocks of a microcontroller A block diagram of basic blocks of microcontroller is illustrated in fig.6. The ALU gets instructions from decoder and two operand externally. Then it processes and send the result to RAM and store the result to register via RAM. 2.3 Proposed Architecture Fig.7: Proposed Architecture of Microcontroller Where, trf_ins: transfer instructions from decoder to ALU. CE_1_2: Clock enable signal from stage 1 to stage 2. CEdec (same as CE_1_2): Clock enable by decoder. CE_2_3: Clock enable signal from stage 2 to stage 3. CEalu (same as CE_2_3): Clock enable by ALU. 2.4 Working Principle Fig.7 shows that the proposed architecture of asynchronous microcontroller. This microcontroller can perform sixteen arithmetic and logical operations viz. add, subtraction, multiplication, division, compare, shift right, shift left, increment, decrement, AND, OR, NOT, NAND, NOR, XOR, XNOR. These will be selected by a 4 to 16 decoder. This decoder has one output named “ACE (ALU Clock Enable)”. It will be high when any one out of the sixteen operations will be selected. This signal will enable the clock for ALU, then ALU will perform. ALU can performs above sixteen operations on two 8bit operands. ALU gets sixteen operation bits from decoder and two 8bit numbers which are user defined. On the basis of sixteen operation bits ALU generates 16bit result. After completing any
  • 3. Srijan Chatterjee, V.V.Subrahmanya Kumar Bhajana / International Journal of Engineering Research and Applications (IJERA) ISSN: 2248-9622 www.ijera.com Vol. 3, Issue 3, May-Jun 2013, pp.543-547 545 | P a g e operations among the above sixteen it generates one high signal “RCE (RAM & register Clock Enable)” to enable clock for RAM and register together as before decoder did for the ALU. Whenever the register become clock enable the “en_off” bit will be zero, it will disable the decoder. So, the clock enable output of the decoder will be also zero. As a result, ALU will be deactivated. When the RAM is clock enabled, the result from ALU, enters to the RAM and when the “w (write)” bit of the RAM become high, the result is stored to the register. For this part, we have to first input two 8bit numbers then have to select 4bit decoder input for a particular operation then have to make enable the decoder and at last have to make high the write bit of the RAM to store the result. 3. SIMULATION RESULTS The simulation results are performed using Xilinx. The schematic of proposed architecture is shown in Fig.8. The simulations are performed for the operations add, subtraction, multiplication, division, compare, shift right, AND and OR. The obtained results are depicted in Fig.9 to Fig.16. Fig.8: Schematic diagram of the microcontroller Fig.9: Simulated result of ADD operation This is the simulation result for ADD (4+3) operation. Whenever enable is ON and decoder gets 4bit data then 16bit data and clock enable signal for ALU are generated. After that ALU gets two 8bit data and generates result and clock enable signal for next stage. When the „w‟ is high, the result transferred to register and saved. And the „en_off‟ bit will go to zero. As a result decoder is OFF. In this is way total operation is completed. As follows: Fig.10: Simulated result of SUB (4-3) operation Fig.11: Simulated result of MUL (4*3) operation Fig.12: Simulated result of DIV (4/2) operation
  • 4. Srijan Chatterjee, V.V.Subrahmanya Kumar Bhajana / International Journal of Engineering Research and Applications (IJERA) ISSN: 2248-9622 www.ijera.com Vol. 3, Issue 3, May-Jun 2013, pp.543-547 546 | P a g e Fig.13: Simulated result of COMP between 2 and 1 This is the simulation result of comparison between 2 and 1. If first input „a‟ is larger than second input „b‟ then the output will be 1, otherwise 0. Fig.14: Simulated result of Right Shift (4 shifted by 2bit) Fig.15: Simulated result of AND operation (1 AND 1) Fig.16: Simulated result of OR operation (4 OR 1) 4. CONCLUSION This paper is mainly deals with the simulation and its implementation of the asynchronous design of an 8bit microcontroller with clock controlling technique. Using which technique in a circuit block we can make activated the working block only and the other blocks are paused. The above technique is very much useful in low power applications viz. Bio medical instruments, mobile phones etc. 5. ACKNOWLEDGEMENT First of all I would like to thank my guide B.V.V.Subrahmanya Kumar for guiding me throughout the research part of the thesis. I am really privileged to have opportunity to work with him. I will also thank Prof. S.K.Mandal (Associate Dean, School of Electronics Engineering, KIIT University, Bhubaneswar, Orissa) for supporting me throughout my research work. I am also thankful to Assistant Professor Mr. Ankit Shivare for all his guidance and pleasant work everyday in the lab. I am also thankful to all the staffs and employees of School of Electronics Engineering of KIIT University. I am really also grateful to my friends Pratik Ganguly and Abhinab Anand for all their helping hands during my days of research. Finally, last but not the least I pay all my sincere gratitude towards my loving mother and caring father for supporting throughout my sorrow and best days of my life. REFERENCES [1] Raj Kamal, Embedded systems (The McGraw Hill Companies) [2] Muhammad Ali Mzidi, Janice Gillispie Mazidi, The 8051 microcontroller and embedded sysytems [3] Peter Marwedel, Embedded system design (Springer)
  • 5. Srijan Chatterjee, V.V.Subrahmanya Kumar Bhajana / International Journal of Engineering Research and Applications (IJERA) ISSN: 2248-9622 www.ijera.com Vol. 3, Issue 3, May-Jun 2013, pp.543-547 547 | P a g e [4] Kok – Leong Chang, Bah – Hwee Gwee, Centre for Integrated Circuits and Systems, Nayang Technological University, Singapore, A low – energy low – voltage asynchronous 8051 microcontroller core, 2006 IEEE. [5] Hans van Gageldonk, Eindhoven University of Technology, The Netherlands, Kees van Berkel, Ad Peeters, Philips Research Laboratories, The Netherlands, Daniel Baumann, Daniel Gloor, Gerhard Stegmann, Philips Semiconductors, Zurich, Switzerland, An asynchronous low – power 80C51 microcontroller. [6] Kok – Leong Chang and Bah – Hwee Gwee, Centre for Integrated Circuits and Systems, Nayang Technological University, Singapore, Yuanjin Zheng, Integrated Circuits and Systems Laboratory, Institute of Microelectronics, Singapore, A semi – custom memory design for an asynchronous 8051 microcontroller, 2008 IEEE. [7] YU Ying, ZHOU Lei, MIN Hao, ASIC & System State – Key Lab, Fudan University, Shanghai, China, Design and vlsi implementation of an asynchronous low power microcontroller. [8] Jamin M.C.Tse and Daniel P.K.Lun, Department of Electronics Engineering, The Hong Kong polytechnique University, Hong Kong, Asynmpu: a fully asynchronous cics micro – processor, 1997 IEEE International Symposium on Circuits and Systems, June 9 – 12, 1997. [9] Hans Jacobson, Department of Computer Engineering, Lulea University of Technology, Asynchronous circuit design, May 1996.