SlideShare a Scribd company logo
1 of 6
Download to read offline
Anuj et al Int. Journal of Engineering Research and Applications www.ijera.com
ISSN : 2248-9622, Vol. 4, Issue 3( Version 1), March 2014, pp.417-422
www.ijera.com 417 | P a g e
8 Bit RISC Processor Using Verilog HDL
Ramandeep Kaur1
, Anuj2
1
VLSI Expert, Cetpa Infotech Pvt. Ltd
2
Trainee, Cetpa Infotech Pvt. Ltd
Abstract
RISC is a design philosophy to reduce the complexity of instruction set that in turn reduces the amount of space,
cycle time, cost and other parameters taken into account during the implementation of the design. The advent of
FPGA has enabled the complex logical systems to be implemented on FPGA. The intent of this paper is to
design and implement 8 bit RISC processor using FPGA Spartan 3E tool. This processor design depends upon
design specification, analysis and simulation. It takes into consideration very simple instruction set. The
momentous components include Control unit, ALU, shift registers and accumulator register.
Keyword: RISC, control unit, processor.
I. Introduction
Now days, Computers are mainstream in
quotidian activities. RISC Processor is a CPU design
strategy that uses simplified instructions for higher
performance with faster execution of instruction. It
also reduces the delay in execution. It uses general
instructions rather than specialized instructions. They
are less costly to design, test and manufacture. This
has helped in implementation of RISC in
technological field. Its range of application includes
signal processing, convolution application,
supercomputers such as K computers and wider base
for smart phones.
In this work, an 8 bit RISC processor is
presented with higher performance and efficiency
being the main aim. This processor comprises of
Control unit, general purpose registers, Arithmetic
and logical unit, shift registers. Control unit follows
instruction cycle of 3 stages fetch, decode and
execute cycle. According to the instruction to the
fetch stage, control unit generate signal to decode the
instruction. The architecture supports 16 instructions
for arithmetic, logical, shifting and rotational
operations.
The whole paper is divided into the following
sections. Section I describes the architecture of the
processor. Section II explains the various modules of
the processor. Result has been presented in the
section III.
II. Architecture
The architecture of 8 bit RISC processor has
been shown in the figure 1. It comprises of Control
unit, general purpose register, ALU, Barrel shifter,
universal shift register and accumulator. The control
unit consists of two registers i.e instruction register
and instruction decoder. Instruction and data are
fetched sequentially in order to reduce the latency in
the machine cycle. Pipeline structure has been
incorporated that further utilizes three execution
cycle fetch, decode and execute. This pipeline
structure helps in enhancing the speed of operation.
In fetch cycle, instruction and relevant data are
inferred from the memory while in decode cycle,
instruction and data drawn from the memory are
bifurcated to activate component and data path for
execution and in the execution cycle instruction is
executed, data is manipulated and result is stored in
the accumulator.
Figure 1.Architecture of 8 bit RISC processor
The control unit accept the opcode and
generate the signal that triggers the components and
RESEARCH ARTICLE OPEN ACCESS
Anuj et al Int. Journal of Engineering Research and Applications www.ijera.com
ISSN : 2248-9622, Vol. 4, Issue 3( Version 1), March 2014, pp.417-422
www.ijera.com 418 | P a g e
data path to work accordingly and perform the
desired function. The control unit has two instruction
decoders. These two decoders decode the instruction
bits and direct the signal to either into ALU,
universal shift register or barrel shift rotator. The
operands are received from register A or register B.
Upon receiving the operands from registers and the
decoded instruction bits arithmetic and logical unit
perform arithmetic and logical functions. Universal
shift register and barrel shift rotator receives the
input from register A and depending upon the
decoded information perform the desired operation of
either shifting or rotation and the result is stored in
the accumulator register.
Figure 2.State diagram
III. Modules in the design of 8 bit RISC
Processor
Modules are the building blocks of a
Processor. This segment deals with the modules of 8
bit RISC processor. Control Unit, ALU, general
purpose register, universal shift register, barrel shift
rotator and accumulator are main modules of the
processor.
1. Control Unit :
The control unit is based on state diagram as
depicted in the figure 2. The state machine performs
the functions of arithmetic, logical, shifting and
rotating functions. If bit instruction is 0100 then OR
operation is performed as soon as next instruction is
received then appropriate operation is performed. The
control unit consists of two decoders. The first
decoder performs arithmetic and logical function and
the second decoder performs shifting and rotating
operations. The top block of control unit is shown in
the figure 3.
Figure 3.Control Unit top block
2. ALU
Arithmetic and logical unit is a digital
circuit that performs arithmetic and logical
operations. The proposed design performs seven
logical functions and two arithmetic functions. The
logical operations to be executed are AND, NAND,
OR, NOR, XOR, XNOR and NOT while two logical
operations are performed Addition and Subtraction.
ALU will receive instruction bits from control unit
and will execute the desired operation. For example,
if input to control unit is 0000, the decoded bits will
be 10000000 and after receiving the instruction bits
from the decoder AND operation is performed by
ALU according to the operands from register A and
register B. The top block is shown in the figure 4.
Anuj et al Int. Journal of Engineering Research and Applications www.ijera.com
ISSN : 2248-9622, Vol. 4, Issue 3( Version 1), March 2014, pp.417-422
www.ijera.com 419 | P a g e
Select lines Decoder Output Functions
Performe
d
s
0
s
1
s
2
s
3
d
0
d
1
d
2
d
3
d
4
d
5
d
6
d
7
Operation
s
0 0 0 0 1 0 0 0 0 0 0 0 AND
1 0 0 0 0 1 0 0 0 0 0 0 NAND
0 1 0 0 0 0 1 0 0 0 0 0 OR
1 1 0 0 0 0 0 1 0 0 0 0 NOR
0 0 1 0 0 0 0 0 1 0 0 0 XOR
0 1 0 1 0 0 0 0 0 1 0 0 XNOR
0 1 1 0 0 0 0 0 0 0 1 0 Subtracti
on
1 1 1 0 0 0 0 0 0 0 0 1 Addition
s
0
s
1
s
2
s
3
Z
o
0
Z
o
1
Z
o
2
Z
o
3
Z
o
4
Z
o
5
Z
o
6
Z
o
7
0 0 0 1 1 0 0 0 0 0 0 0 Not
Table 1. Operation of ALU
Figure 4. ALU Top Block
Figure 5. ALU Simulation Result
3. Barrel Shifter:
Barrel shifter is shown in the figure 6. It is a
digital circuit that shifts the number of bits by
specified times. It will receive the decoded intruction
bits from the second intruction decoder inside the
control unit and performs the desired operation
depending upon operand from register A and select
lines.
Figure 6. Barrel shifter Top block
Anuj et al Int. Journal of Engineering Research and Applications www.ijera.com
ISSN : 2248-9622, Vol. 4, Issue 3( Version 1), March 2014, pp.417-422
www.ijera.com 420 | P a g e
Table 2. Operation of Barrel shifter
4. Universal Shift Register
The achitecture is shown in the figure 7.
This architecture performs four main functions as
follows loading the value, left shift and right shift and
no change. If s4 and s5 both are low while z is equal
to 01000000 the value is loaded. If s4 is low and s5 is
high with decoded output z as 00100000 left shift
operation is performed.
Figure 7. Universal Shift register Top block
Sele
ct
lines
Decoder output Functions
performed
s
4
s
5
Z
o
0
Zo
1
Zo
2
Zo
3
Zo
4
Zo
5
Zo
6
Zo
7
Operation
s
0 0 0 1 0 0 0 0 0 0 Load
0 1 0 0 1 0 0 0 0 0 Left shift
1 0 0 0 0 1 0 0 0 0 Right shift
1 1 0 0 0 0 1 0 0 0 Zero
operation
Table 3. Operation of Universal shift register
Figure 8.Universal shift register simulation result
5. General Purpose Register
General purpose register stores the 8 bit
data. There are total 8 D flip flops. Two general
purpose registers are A and B. If reset is high then
register is clear, on the other hand if reset is low, rd is
taken to be high and clock is high data is stored in the
register. It is shown in the figure 9.
Input Output
Cl
k
rese
t
r
d
A7 A6 A5 A4 A3 A2
A1 A0
P7 P6 P5 P4 P3 P2
P1 P0
1 1 x X X X X X X
X X
0 0 0 0 0 0
0 0
1 0 1 0 0 0 0 1 1
0 0
0 0 0 0 1 1
0 0
Table 3.Operation of General purpose register
Select
lines
Decoder output Function
performe
d
S
0
S
1
S
2
Z
o
0
Z
o
1
Z
o2
Z
o3
Z
o
4
Z
o
5
Z
o
6
Z
o
7
Operatio
ns
0 0 0 0 1 0 0 0 0 0 0 Zero
opration
0 0 1 0 0 0 0 1 0 0 0 1 bit left
rotate
0 1 0 0 0 0 0 0 1 0 0 2 bit left
rotate
0 1 1 0 0 0 0 0 0 1 0 3 bit
right
rotate
1 0 0 0 0 0 0 0 0 0 1 4 bit left
rotate
Anuj et al Int. Journal of Engineering Research and Applications www.ijera.com
ISSN : 2248-9622, Vol. 4, Issue 3( Version 1), March 2014, pp.417-422
www.ijera.com 421 | P a g e
Figure 9.General purpose register Top Block
Figure 10.General purpose register Simulation result
6. Accumulator Register:
Accumulator register top block is shown in
the figure 11.The result from ALU or universal shift
register or barrel rotator is stored in the accumulator
register. If reset is set to high then accumulator
register is cleared otherwise 8 bit result is stored in
the accumulator register.
Figure 11.Accumulator register top block
Figure 12.Accumulator simulation result
IV. RESULT
The performance of 8 bit RISC processor
has been scrutinized using Xilinx Spartan 3E
technology. The design meets the requirement of
high speed, extremely low cost and consumer
oriented design.
The overall design has been shown in the
figure. The data is received from two 8 bit registers A
and B. Signal READ(rd) is a memory interface
signal. This signal adumbrates the memory location
to be read and data to be put into the data bus.
The synchronization is done utilizing clk signal.
Design of processor has been accomplished using
two control signals namely rd and reset. If reset is
high, processor will not perform any operation and
continue to remain in idle state. If reset is low and rd
is high data is loaded into register. Depending upon
the opcode from control unit the processor performs
the operation.
This 8 bit RISC processor works on one
clock cycle. clk is the external clock signal
and triggers the input and result in the output. rd
triggers the state of registers A and B. s0 to s3
specifies the opcode to enable the operation. If
opcode is 0100 then OR operation is performed.
V. CONCLUSION
An 8 bit RISC processor with 16 instruction
set has been designed. Every instruction has been
executed in one clock cycle with 3 stage pipelining.
Verification has been endeavored by exhaustive
simulation. The processor can be used for
mathematical computation in portable calculators as
well as in gaming tool kit.
REFERENCES
[1] B. Rajesh Kumar, Ravisaketh and Santha
Kumar, 2014, “Implementation of A 16-bit
RISC Processor for Convolution
Application”, Research India publications,
pp 441-446.
[2] Aneesh, R.; Jiju, K. "Design of FPGA based
8-bit RISC controller IP core using
Anuj et al Int. Journal of Engineering Research and Applications www.ijera.com
ISSN : 2248-9622, Vol. 4, Issue 3( Version 1), March 2014, pp.417-422
www.ijera.com 422 | P a g e
VHDL", India Conference (INDICON),
2012 Annual IEEE, On page(s): 427 - 432
[3] Ferdous, T. "Design and FPGA-based
implementation of a high performance 32-
bit DSP processor", Computer and
Information Technology (ICCIT), 2012 15th
International Conference, on page(s): 484 –
489
[4] R Uma, Design and performance analysis of
8 bit RISC processor using Xilinx tools,
March-April 2012, ”, International Journal
of Engineering Research and Applications
(IJERA), pp 053-058.
[5] MD.Shabeena Begum, M.Kishore Kumar,
“FPGA based implementation of 32 bit risc
processor”, International Journal of
Engineering Research and Applications
(IJERA), pp 1148-1151
[6] Mr. Sagar P. Ritpurkar, Prof. Mangesh
N. Thakare, Prof. Girish D. Korde ,” Review
on 32-bit MIPS RISC Processor using
VHDL”, IOSR Journal of Electrical and
Electronics Engineering (IOSR-JEEE), PP
46-50
[7] Anjana R & Krunal Gandhi, “VHDL
Implementation of a MIPS RISC Processor”,
August 2012, International Journal of
Advanced Research in Computer Science
and Software Engineering, pp 83-88

More Related Content

What's hot

8085 microprocessor notes
8085 microprocessor notes8085 microprocessor notes
8085 microprocessor notesAdiseshaK
 
Xcs 234 microprocessors
Xcs 234 microprocessorsXcs 234 microprocessors
Xcs 234 microprocessorssweta suman
 
EE6502 Microprocessors and Microcontrollers
EE6502 Microprocessors and MicrocontrollersEE6502 Microprocessors and Microcontrollers
EE6502 Microprocessors and MicrocontrollersSanthosh Kumar
 
Design, Construction and Operation of a 4-Bit Counting Circuit
Design, Construction and Operation of a 4-Bit Counting CircuitDesign, Construction and Operation of a 4-Bit Counting Circuit
Design, Construction and Operation of a 4-Bit Counting CircuitIOSR Journals
 
MICROPROCESSORS & MICROCONTROLLERS
MICROPROCESSORS & MICROCONTROLLERSMICROPROCESSORS & MICROCONTROLLERS
MICROPROCESSORS & MICROCONTROLLERSkhalil zeineddine
 
Unit 1 8085 Timing diagram - lecture 5b
Unit 1  8085 Timing diagram - lecture 5bUnit 1  8085 Timing diagram - lecture 5b
Unit 1 8085 Timing diagram - lecture 5bDickson Nkongo
 
Microprocessor 8085 complete
Microprocessor 8085 completeMicroprocessor 8085 complete
Microprocessor 8085 completeShubham Singh
 
Introduction to 8085_by_adi_ppt
Introduction to 8085_by_adi_pptIntroduction to 8085_by_adi_ppt
Introduction to 8085_by_adi_pptAdiseshaK
 
Intel 8085 Micro Processor
Intel 8085 Micro ProcessorIntel 8085 Micro Processor
Intel 8085 Micro Processorsilentsoul
 
IRJET- Design and Implementation of PID Controller using HDL on FPGA
IRJET- 	  Design and Implementation of PID Controller using HDL on FPGAIRJET- 	  Design and Implementation of PID Controller using HDL on FPGA
IRJET- Design and Implementation of PID Controller using HDL on FPGAIRJET Journal
 
Interfacing of io device to 8085
Interfacing of io device to 8085Interfacing of io device to 8085
Interfacing of io device to 8085Nitin Ahire
 
5 pin-diagram-of-8085-181203034237
5 pin-diagram-of-8085-1812030342375 pin-diagram-of-8085-181203034237
5 pin-diagram-of-8085-181203034237sunilkumar4879
 
microcontroller-8051-ppt(1)
microcontroller-8051-ppt(1)microcontroller-8051-ppt(1)
microcontroller-8051-ppt(1)jhcid
 

What's hot (18)

8085 microprocessor notes
8085 microprocessor notes8085 microprocessor notes
8085 microprocessor notes
 
Xcs 234 microprocessors
Xcs 234 microprocessorsXcs 234 microprocessors
Xcs 234 microprocessors
 
8085 microprocessor
8085 microprocessor8085 microprocessor
8085 microprocessor
 
EE6502 Microprocessors and Microcontrollers
EE6502 Microprocessors and MicrocontrollersEE6502 Microprocessors and Microcontrollers
EE6502 Microprocessors and Microcontrollers
 
8085 microprocessor
8085 microprocessor8085 microprocessor
8085 microprocessor
 
Design, Construction and Operation of a 4-Bit Counting Circuit
Design, Construction and Operation of a 4-Bit Counting CircuitDesign, Construction and Operation of a 4-Bit Counting Circuit
Design, Construction and Operation of a 4-Bit Counting Circuit
 
MICROPROCESSORS & MICROCONTROLLERS
MICROPROCESSORS & MICROCONTROLLERSMICROPROCESSORS & MICROCONTROLLERS
MICROPROCESSORS & MICROCONTROLLERS
 
Unit 1 8085 Timing diagram - lecture 5b
Unit 1  8085 Timing diagram - lecture 5bUnit 1  8085 Timing diagram - lecture 5b
Unit 1 8085 Timing diagram - lecture 5b
 
Microprocessor 8085 complete
Microprocessor 8085 completeMicroprocessor 8085 complete
Microprocessor 8085 complete
 
Introduction to 8085_by_adi_ppt
Introduction to 8085_by_adi_pptIntroduction to 8085_by_adi_ppt
Introduction to 8085_by_adi_ppt
 
8086 Microprocessor
8086  Microprocessor8086  Microprocessor
8086 Microprocessor
 
Introduction to 8085svv
Introduction to 8085svvIntroduction to 8085svv
Introduction to 8085svv
 
Intel 8085 Micro Processor
Intel 8085 Micro ProcessorIntel 8085 Micro Processor
Intel 8085 Micro Processor
 
IRJET- Design and Implementation of PID Controller using HDL on FPGA
IRJET- 	  Design and Implementation of PID Controller using HDL on FPGAIRJET- 	  Design and Implementation of PID Controller using HDL on FPGA
IRJET- Design and Implementation of PID Controller using HDL on FPGA
 
8085 (1)
8085 (1)8085 (1)
8085 (1)
 
Interfacing of io device to 8085
Interfacing of io device to 8085Interfacing of io device to 8085
Interfacing of io device to 8085
 
5 pin-diagram-of-8085-181203034237
5 pin-diagram-of-8085-1812030342375 pin-diagram-of-8085-181203034237
5 pin-diagram-of-8085-181203034237
 
microcontroller-8051-ppt(1)
microcontroller-8051-ppt(1)microcontroller-8051-ppt(1)
microcontroller-8051-ppt(1)
 

Viewers also liked (20)

Bg4301324326
Bg4301324326Bg4301324326
Bg4301324326
 
Be4301314318
Be4301314318Be4301314318
Be4301314318
 
B43060612
B43060612B43060612
B43060612
 
Bj4301341344
Bj4301341344Bj4301341344
Bj4301341344
 
Bp4301373380
Bp4301373380Bp4301373380
Bp4301373380
 
A43030104
A43030104A43030104
A43030104
 
Aj4301193196
Aj4301193196Aj4301193196
Aj4301193196
 
At4301239243
At4301239243At4301239243
At4301239243
 
Kg3617691773
Kg3617691773Kg3617691773
Kg3617691773
 
Le3619061915
Le3619061915Le3619061915
Le3619061915
 
Kt3618371840
Kt3618371840Kt3618371840
Kt3618371840
 
Kn3618041809
Kn3618041809Kn3618041809
Kn3618041809
 
Kq3618201825
Kq3618201825Kq3618201825
Kq3618201825
 
Ky3618721875
Ky3618721875Ky3618721875
Ky3618721875
 
Kl3617891796
Kl3617891796Kl3617891796
Kl3617891796
 
Hk3613091316
Hk3613091316Hk3613091316
Hk3613091316
 
Redes sociales
Redes socialesRedes sociales
Redes sociales
 
AJLPLuis Gómez y Rubén Pina
AJLPLuis Gómez y Rubén PinaAJLPLuis Gómez y Rubén Pina
AJLPLuis Gómez y Rubén Pina
 
Presentacion dreamweaver
Presentacion dreamweaverPresentacion dreamweaver
Presentacion dreamweaver
 
abalar/webs dinámicas
abalar/webs dinámicasabalar/webs dinámicas
abalar/webs dinámicas
 

Similar to 8-Bit RISC Processor Using Verilog HDL

ZiLOG Universal Infrared Remote Reference Design
ZiLOG Universal Infrared Remote Reference DesignZiLOG Universal Infrared Remote Reference Design
ZiLOG Universal Infrared Remote Reference DesignDiana Laboy-Rush
 
Design and Implementation of Pipelined 8-Bit RISC Processor using Verilog HDL...
Design and Implementation of Pipelined 8-Bit RISC Processor using Verilog HDL...Design and Implementation of Pipelined 8-Bit RISC Processor using Verilog HDL...
Design and Implementation of Pipelined 8-Bit RISC Processor using Verilog HDL...IRJET Journal
 
Implementation of 32 Bit Binary Floating Point Adder Using IEEE 754 Single Pr...
Implementation of 32 Bit Binary Floating Point Adder Using IEEE 754 Single Pr...Implementation of 32 Bit Binary Floating Point Adder Using IEEE 754 Single Pr...
Implementation of 32 Bit Binary Floating Point Adder Using IEEE 754 Single Pr...iosrjce
 
Design of FPGA based 8-bit RISC Controller IP core using VHDL
Design of FPGA based 8-bit RISC Controller IP core using VHDLDesign of FPGA based 8-bit RISC Controller IP core using VHDL
Design of FPGA based 8-bit RISC Controller IP core using VHDLAneesh Raveendran
 
IRJET- Design of Low Power 32- Bit RISC Processor using Verilog HDL
IRJET-  	  Design of Low Power 32- Bit RISC Processor using Verilog HDLIRJET-  	  Design of Low Power 32- Bit RISC Processor using Verilog HDL
IRJET- Design of Low Power 32- Bit RISC Processor using Verilog HDLIRJET Journal
 
Microprocessorlabmanual ee0310
Microprocessorlabmanual ee0310Microprocessorlabmanual ee0310
Microprocessorlabmanual ee0310Hari Prakash
 
Micro Processor Lab Manual!
Micro Processor Lab Manual!Micro Processor Lab Manual!
Micro Processor Lab Manual!PRABHAHARAN429
 
IRJET - Controlling 4 DOF Robotic ARM with 3-Axis Accelerometer and Flex ...
IRJET -  	  Controlling 4 DOF Robotic ARM with 3-Axis Accelerometer and Flex ...IRJET -  	  Controlling 4 DOF Robotic ARM with 3-Axis Accelerometer and Flex ...
IRJET - Controlling 4 DOF Robotic ARM with 3-Axis Accelerometer and Flex ...IRJET Journal
 
8085 MICROPROCESSOR ARCHITECTURE AND ITS OPERATIONS
8085 MICROPROCESSOR ARCHITECTURE AND ITS OPERATIONS8085 MICROPROCESSOR ARCHITECTURE AND ITS OPERATIONS
8085 MICROPROCESSOR ARCHITECTURE AND ITS OPERATIONSRamaPrabha24
 
Microprocessor lab manual
Microprocessor lab manualMicroprocessor lab manual
Microprocessor lab manualDhaval Shukla
 
8085 notes g scheme 2016 (2)
8085 notes g scheme 2016 (2)8085 notes g scheme 2016 (2)
8085 notes g scheme 2016 (2)HarshitParkar6677
 
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.pdfssuser1e1bab
 
Microprocessor and Microcontroller Anna University Answer Key April / May - 2015
Microprocessor and Microcontroller Anna University Answer Key April / May - 2015Microprocessor and Microcontroller Anna University Answer Key April / May - 2015
Microprocessor and Microcontroller Anna University Answer Key April / May - 2015JCT COLLEGE OF ENGINEERING AND TECHNOLOGY
 
VHDL Implementation Of 64-bit ALU
VHDL Implementation Of 64-bit ALUVHDL Implementation Of 64-bit ALU
VHDL Implementation Of 64-bit ALUIOSR Journals
 

Similar to 8-Bit RISC Processor Using Verilog HDL (20)

ZiLOG Universal Infrared Remote Reference Design
ZiLOG Universal Infrared Remote Reference DesignZiLOG Universal Infrared Remote Reference Design
ZiLOG Universal Infrared Remote Reference Design
 
K010137378
K010137378K010137378
K010137378
 
C010620914
C010620914C010620914
C010620914
 
Design and Implementation of Pipelined 8-Bit RISC Processor using Verilog HDL...
Design and Implementation of Pipelined 8-Bit RISC Processor using Verilog HDL...Design and Implementation of Pipelined 8-Bit RISC Processor using Verilog HDL...
Design and Implementation of Pipelined 8-Bit RISC Processor using Verilog HDL...
 
Cadancesimulation
CadancesimulationCadancesimulation
Cadancesimulation
 
Implementation of 32 Bit Binary Floating Point Adder Using IEEE 754 Single Pr...
Implementation of 32 Bit Binary Floating Point Adder Using IEEE 754 Single Pr...Implementation of 32 Bit Binary Floating Point Adder Using IEEE 754 Single Pr...
Implementation of 32 Bit Binary Floating Point Adder Using IEEE 754 Single Pr...
 
Design of FPGA based 8-bit RISC Controller IP core using VHDL
Design of FPGA based 8-bit RISC Controller IP core using VHDLDesign of FPGA based 8-bit RISC Controller IP core using VHDL
Design of FPGA based 8-bit RISC Controller IP core using VHDL
 
IRJET- Design of Low Power 32- Bit RISC Processor using Verilog HDL
IRJET-  	  Design of Low Power 32- Bit RISC Processor using Verilog HDLIRJET-  	  Design of Low Power 32- Bit RISC Processor using Verilog HDL
IRJET- Design of Low Power 32- Bit RISC Processor using Verilog HDL
 
Microprocessorlabmanual ee0310
Microprocessorlabmanual ee0310Microprocessorlabmanual ee0310
Microprocessorlabmanual ee0310
 
Micro Processor Lab Manual!
Micro Processor Lab Manual!Micro Processor Lab Manual!
Micro Processor Lab Manual!
 
IRJET - Controlling 4 DOF Robotic ARM with 3-Axis Accelerometer and Flex ...
IRJET -  	  Controlling 4 DOF Robotic ARM with 3-Axis Accelerometer and Flex ...IRJET -  	  Controlling 4 DOF Robotic ARM with 3-Axis Accelerometer and Flex ...
IRJET - Controlling 4 DOF Robotic ARM with 3-Axis Accelerometer and Flex ...
 
8085 MICROPROCESSOR ARCHITECTURE AND ITS OPERATIONS
8085 MICROPROCESSOR ARCHITECTURE AND ITS OPERATIONS8085 MICROPROCESSOR ARCHITECTURE AND ITS OPERATIONS
8085 MICROPROCESSOR ARCHITECTURE AND ITS OPERATIONS
 
Microprocessor lab manual
Microprocessor lab manualMicroprocessor lab manual
Microprocessor lab manual
 
8085 notes g scheme 2016
8085 notes g scheme 20168085 notes g scheme 2016
8085 notes g scheme 2016
 
8085 notes g scheme 2016 (2)
8085 notes g scheme 2016 (2)8085 notes g scheme 2016 (2)
8085 notes g scheme 2016 (2)
 
8085 notes g scheme
8085 notes g scheme8085 notes g scheme
8085 notes g scheme
 
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
 
A044050107
A044050107A044050107
A044050107
 
Microprocessor and Microcontroller Anna University Answer Key April / May - 2015
Microprocessor and Microcontroller Anna University Answer Key April / May - 2015Microprocessor and Microcontroller Anna University Answer Key April / May - 2015
Microprocessor and Microcontroller Anna University Answer Key April / May - 2015
 
VHDL Implementation Of 64-bit ALU
VHDL Implementation Of 64-bit ALUVHDL Implementation Of 64-bit ALU
VHDL Implementation Of 64-bit ALU
 

Recently uploaded

Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsJoaquim Jorge
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdfhans926745
 
CNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of ServiceCNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of Servicegiselly40
 
08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking MenDelhi Call girls
 
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptxHampshireHUG
 
Slack Application Development 101 Slides
Slack Application Development 101 SlidesSlack Application Development 101 Slides
Slack Application Development 101 Slidespraypatel2
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘RTylerCroy
 
Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024The Digital Insurer
 
A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?Igalia
 
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024The Digital Insurer
 
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...Neo4j
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Miguel Araújo
 
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEarley Information Science
 
The Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxThe Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxMalak Abu Hammad
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfsudhanshuwaghmare1
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...Martijn de Jong
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024The Digital Insurer
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonAnna Loughnan Colquhoun
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024The Digital Insurer
 
Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Scriptwesley chun
 

Recently uploaded (20)

Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and Myths
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf
 
CNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of ServiceCNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of Service
 
08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men
 
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
 
Slack Application Development 101 Slides
Slack Application Development 101 SlidesSlack Application Development 101 Slides
Slack Application Development 101 Slides
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘
 
Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024
 
A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?
 
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
 
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
 
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
 
The Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxThe Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptx
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdf
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt Robison
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024
 
Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Script
 

8-Bit RISC Processor Using Verilog HDL

  • 1. Anuj et al Int. Journal of Engineering Research and Applications www.ijera.com ISSN : 2248-9622, Vol. 4, Issue 3( Version 1), March 2014, pp.417-422 www.ijera.com 417 | P a g e 8 Bit RISC Processor Using Verilog HDL Ramandeep Kaur1 , Anuj2 1 VLSI Expert, Cetpa Infotech Pvt. Ltd 2 Trainee, Cetpa Infotech Pvt. Ltd Abstract RISC is a design philosophy to reduce the complexity of instruction set that in turn reduces the amount of space, cycle time, cost and other parameters taken into account during the implementation of the design. The advent of FPGA has enabled the complex logical systems to be implemented on FPGA. The intent of this paper is to design and implement 8 bit RISC processor using FPGA Spartan 3E tool. This processor design depends upon design specification, analysis and simulation. It takes into consideration very simple instruction set. The momentous components include Control unit, ALU, shift registers and accumulator register. Keyword: RISC, control unit, processor. I. Introduction Now days, Computers are mainstream in quotidian activities. RISC Processor is a CPU design strategy that uses simplified instructions for higher performance with faster execution of instruction. It also reduces the delay in execution. It uses general instructions rather than specialized instructions. They are less costly to design, test and manufacture. This has helped in implementation of RISC in technological field. Its range of application includes signal processing, convolution application, supercomputers such as K computers and wider base for smart phones. In this work, an 8 bit RISC processor is presented with higher performance and efficiency being the main aim. This processor comprises of Control unit, general purpose registers, Arithmetic and logical unit, shift registers. Control unit follows instruction cycle of 3 stages fetch, decode and execute cycle. According to the instruction to the fetch stage, control unit generate signal to decode the instruction. The architecture supports 16 instructions for arithmetic, logical, shifting and rotational operations. The whole paper is divided into the following sections. Section I describes the architecture of the processor. Section II explains the various modules of the processor. Result has been presented in the section III. II. Architecture The architecture of 8 bit RISC processor has been shown in the figure 1. It comprises of Control unit, general purpose register, ALU, Barrel shifter, universal shift register and accumulator. The control unit consists of two registers i.e instruction register and instruction decoder. Instruction and data are fetched sequentially in order to reduce the latency in the machine cycle. Pipeline structure has been incorporated that further utilizes three execution cycle fetch, decode and execute. This pipeline structure helps in enhancing the speed of operation. In fetch cycle, instruction and relevant data are inferred from the memory while in decode cycle, instruction and data drawn from the memory are bifurcated to activate component and data path for execution and in the execution cycle instruction is executed, data is manipulated and result is stored in the accumulator. Figure 1.Architecture of 8 bit RISC processor The control unit accept the opcode and generate the signal that triggers the components and RESEARCH ARTICLE OPEN ACCESS
  • 2. Anuj et al Int. Journal of Engineering Research and Applications www.ijera.com ISSN : 2248-9622, Vol. 4, Issue 3( Version 1), March 2014, pp.417-422 www.ijera.com 418 | P a g e data path to work accordingly and perform the desired function. The control unit has two instruction decoders. These two decoders decode the instruction bits and direct the signal to either into ALU, universal shift register or barrel shift rotator. The operands are received from register A or register B. Upon receiving the operands from registers and the decoded instruction bits arithmetic and logical unit perform arithmetic and logical functions. Universal shift register and barrel shift rotator receives the input from register A and depending upon the decoded information perform the desired operation of either shifting or rotation and the result is stored in the accumulator register. Figure 2.State diagram III. Modules in the design of 8 bit RISC Processor Modules are the building blocks of a Processor. This segment deals with the modules of 8 bit RISC processor. Control Unit, ALU, general purpose register, universal shift register, barrel shift rotator and accumulator are main modules of the processor. 1. Control Unit : The control unit is based on state diagram as depicted in the figure 2. The state machine performs the functions of arithmetic, logical, shifting and rotating functions. If bit instruction is 0100 then OR operation is performed as soon as next instruction is received then appropriate operation is performed. The control unit consists of two decoders. The first decoder performs arithmetic and logical function and the second decoder performs shifting and rotating operations. The top block of control unit is shown in the figure 3. Figure 3.Control Unit top block 2. ALU Arithmetic and logical unit is a digital circuit that performs arithmetic and logical operations. The proposed design performs seven logical functions and two arithmetic functions. The logical operations to be executed are AND, NAND, OR, NOR, XOR, XNOR and NOT while two logical operations are performed Addition and Subtraction. ALU will receive instruction bits from control unit and will execute the desired operation. For example, if input to control unit is 0000, the decoded bits will be 10000000 and after receiving the instruction bits from the decoder AND operation is performed by ALU according to the operands from register A and register B. The top block is shown in the figure 4.
  • 3. Anuj et al Int. Journal of Engineering Research and Applications www.ijera.com ISSN : 2248-9622, Vol. 4, Issue 3( Version 1), March 2014, pp.417-422 www.ijera.com 419 | P a g e Select lines Decoder Output Functions Performe d s 0 s 1 s 2 s 3 d 0 d 1 d 2 d 3 d 4 d 5 d 6 d 7 Operation s 0 0 0 0 1 0 0 0 0 0 0 0 AND 1 0 0 0 0 1 0 0 0 0 0 0 NAND 0 1 0 0 0 0 1 0 0 0 0 0 OR 1 1 0 0 0 0 0 1 0 0 0 0 NOR 0 0 1 0 0 0 0 0 1 0 0 0 XOR 0 1 0 1 0 0 0 0 0 1 0 0 XNOR 0 1 1 0 0 0 0 0 0 0 1 0 Subtracti on 1 1 1 0 0 0 0 0 0 0 0 1 Addition s 0 s 1 s 2 s 3 Z o 0 Z o 1 Z o 2 Z o 3 Z o 4 Z o 5 Z o 6 Z o 7 0 0 0 1 1 0 0 0 0 0 0 0 Not Table 1. Operation of ALU Figure 4. ALU Top Block Figure 5. ALU Simulation Result 3. Barrel Shifter: Barrel shifter is shown in the figure 6. It is a digital circuit that shifts the number of bits by specified times. It will receive the decoded intruction bits from the second intruction decoder inside the control unit and performs the desired operation depending upon operand from register A and select lines. Figure 6. Barrel shifter Top block
  • 4. Anuj et al Int. Journal of Engineering Research and Applications www.ijera.com ISSN : 2248-9622, Vol. 4, Issue 3( Version 1), March 2014, pp.417-422 www.ijera.com 420 | P a g e Table 2. Operation of Barrel shifter 4. Universal Shift Register The achitecture is shown in the figure 7. This architecture performs four main functions as follows loading the value, left shift and right shift and no change. If s4 and s5 both are low while z is equal to 01000000 the value is loaded. If s4 is low and s5 is high with decoded output z as 00100000 left shift operation is performed. Figure 7. Universal Shift register Top block Sele ct lines Decoder output Functions performed s 4 s 5 Z o 0 Zo 1 Zo 2 Zo 3 Zo 4 Zo 5 Zo 6 Zo 7 Operation s 0 0 0 1 0 0 0 0 0 0 Load 0 1 0 0 1 0 0 0 0 0 Left shift 1 0 0 0 0 1 0 0 0 0 Right shift 1 1 0 0 0 0 1 0 0 0 Zero operation Table 3. Operation of Universal shift register Figure 8.Universal shift register simulation result 5. General Purpose Register General purpose register stores the 8 bit data. There are total 8 D flip flops. Two general purpose registers are A and B. If reset is high then register is clear, on the other hand if reset is low, rd is taken to be high and clock is high data is stored in the register. It is shown in the figure 9. Input Output Cl k rese t r d A7 A6 A5 A4 A3 A2 A1 A0 P7 P6 P5 P4 P3 P2 P1 P0 1 1 x X X X X X X X X 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 1 1 0 0 0 0 0 0 1 1 0 0 Table 3.Operation of General purpose register Select lines Decoder output Function performe d S 0 S 1 S 2 Z o 0 Z o 1 Z o2 Z o3 Z o 4 Z o 5 Z o 6 Z o 7 Operatio ns 0 0 0 0 1 0 0 0 0 0 0 Zero opration 0 0 1 0 0 0 0 1 0 0 0 1 bit left rotate 0 1 0 0 0 0 0 0 1 0 0 2 bit left rotate 0 1 1 0 0 0 0 0 0 1 0 3 bit right rotate 1 0 0 0 0 0 0 0 0 0 1 4 bit left rotate
  • 5. Anuj et al Int. Journal of Engineering Research and Applications www.ijera.com ISSN : 2248-9622, Vol. 4, Issue 3( Version 1), March 2014, pp.417-422 www.ijera.com 421 | P a g e Figure 9.General purpose register Top Block Figure 10.General purpose register Simulation result 6. Accumulator Register: Accumulator register top block is shown in the figure 11.The result from ALU or universal shift register or barrel rotator is stored in the accumulator register. If reset is set to high then accumulator register is cleared otherwise 8 bit result is stored in the accumulator register. Figure 11.Accumulator register top block Figure 12.Accumulator simulation result IV. RESULT The performance of 8 bit RISC processor has been scrutinized using Xilinx Spartan 3E technology. The design meets the requirement of high speed, extremely low cost and consumer oriented design. The overall design has been shown in the figure. The data is received from two 8 bit registers A and B. Signal READ(rd) is a memory interface signal. This signal adumbrates the memory location to be read and data to be put into the data bus. The synchronization is done utilizing clk signal. Design of processor has been accomplished using two control signals namely rd and reset. If reset is high, processor will not perform any operation and continue to remain in idle state. If reset is low and rd is high data is loaded into register. Depending upon the opcode from control unit the processor performs the operation. This 8 bit RISC processor works on one clock cycle. clk is the external clock signal and triggers the input and result in the output. rd triggers the state of registers A and B. s0 to s3 specifies the opcode to enable the operation. If opcode is 0100 then OR operation is performed. V. CONCLUSION An 8 bit RISC processor with 16 instruction set has been designed. Every instruction has been executed in one clock cycle with 3 stage pipelining. Verification has been endeavored by exhaustive simulation. The processor can be used for mathematical computation in portable calculators as well as in gaming tool kit. REFERENCES [1] B. Rajesh Kumar, Ravisaketh and Santha Kumar, 2014, “Implementation of A 16-bit RISC Processor for Convolution Application”, Research India publications, pp 441-446. [2] Aneesh, R.; Jiju, K. "Design of FPGA based 8-bit RISC controller IP core using
  • 6. Anuj et al Int. Journal of Engineering Research and Applications www.ijera.com ISSN : 2248-9622, Vol. 4, Issue 3( Version 1), March 2014, pp.417-422 www.ijera.com 422 | P a g e VHDL", India Conference (INDICON), 2012 Annual IEEE, On page(s): 427 - 432 [3] Ferdous, T. "Design and FPGA-based implementation of a high performance 32- bit DSP processor", Computer and Information Technology (ICCIT), 2012 15th International Conference, on page(s): 484 – 489 [4] R Uma, Design and performance analysis of 8 bit RISC processor using Xilinx tools, March-April 2012, ”, International Journal of Engineering Research and Applications (IJERA), pp 053-058. [5] MD.Shabeena Begum, M.Kishore Kumar, “FPGA based implementation of 32 bit risc processor”, International Journal of Engineering Research and Applications (IJERA), pp 1148-1151 [6] Mr. Sagar P. Ritpurkar, Prof. Mangesh N. Thakare, Prof. Girish D. Korde ,” Review on 32-bit MIPS RISC Processor using VHDL”, IOSR Journal of Electrical and Electronics Engineering (IOSR-JEEE), PP 46-50 [7] Anjana R & Krunal Gandhi, “VHDL Implementation of a MIPS RISC Processor”, August 2012, International Journal of Advanced Research in Computer Science and Software Engineering, pp 83-88