Skip to content

LAPILU is an N-Bit configurable soft-core microprocessor written in VHDL that is designed to be as simple as possible, aiming to be easy to understand for students, enthusiasts or engineers

License

Notifications You must be signed in to change notification settings

millocorona/LAPILU-SimpleSoftCoreMicroProcessorUnit

Repository files navigation

LAPILU - Simple SoftCore Microprocessor Unit

The porpuse of this document is to describe the project as best as possible, you can take this like a Datasheet for the microprocessor.

First we need to answer some common questions:

Who is involved in the project and why it started?

It began as a school project for the subject Computer architecture taught by Professor Cesar Mujica in the group 3CM4 at the "Escuela Superior de Computo" of the "Instituto Politecnico Nacional" (In Mexico)
The people involved in the project are (In alphabetical order):

  • Balderas Aceves Lidia Lizbeth
  • Corona Lopez Emilio Abraham
  • Jimenez Villa Victor Hugo
  • Landeros Beltran Israel Ariel

What is LAPILU?

LAPILU is an N-Bit configurable soft-core microprocessor written in VHDL that is designed to be as simple as possible, aiming to be easy to understand for students, enthusiasts or engineers.

What is a soft-core microprocessor?

A soft microprocessor (also called softcore microprocessor or a soft processor) is a microprocessor core that can be wholly implemented using logic synthesis. It can be implemented via different semiconductor devices containing programmable logic (e.g., ASIC, FPGA, CPLD).

What do you mean with N-bit?

That is very simple, it refers to the number of bits in the processor data bus, for example, probably the computer in which you are reading this right now is a 64 bit machine, that means that its data bus length is exacly 64 bits, so, in an N-bit microprocessor, like LAPILU, this length can be configured to be 8,16 or theoreticaly any even number, this is mainly limited by the size of your FPGA but there are a little bit more restrictions that will be explained later in this document.

The N-Bit characteristic was accomplished using VHDL generic entities.

Now that we answered those common questions, we can continue explaining the Microprocessor

Pinout

The VHDL top entity has the following structure

  
    entity LAPILU is
      generic (
          DATA_BUS_LENGTH    : integer := 8; 
          ADDRESS_BUS_LENGTH : integer := 16   
      );
      port (
          CLOCK           : in     std_logic;
          INVERTED_CLOCK  : in     std_logic;
          DATA_BUS_IN     : in     std_logic_vector (DATA_BUS_LENGTH-1 downto 0);
          DATA_BUS_OUT    : out    std_logic_vector (DATA_BUS_LENGTH-1 downto 0);
          ADDRESS_BUS     : out    std_logic_vector (ADDRESS_BUS_LENGTH-1 downto 0);
          RW              : out    std_logic;
          IRQ             : in     std_logic;
          CPU_RESET       : in     std_logic
      ); 
    end LAPILU;
  
  

Target devices

In theory it should work on any FPGA, and maybe some CPLD's but for development we use a Xilinx Nexys A7 (Nexys 4 DDR), and also the IDE we use is Xilinx Vivado 2019.2

If you want to implement LAPILU in another device from Xilinx and you are using Vivado, probably you only need to clone the repository, open the project and change the setting to match your specific device, also replace the implementation contraints file as you need.

If you want to implement LAPILU in another device from Xilinx and you are using ISE, only download the .src directory, create a new project and add the files to ISE, also replace the implementation contraints file as you need.

If you want to implement LAPILU in another device from another vendor you only need the .src directory, create a project for your device and import the source code to the project, also create an implementation contraints file for your device as you need.

The implementation and bitstream contained in this repository are generated for the Xilinx Nexys A7 (Nexys 4 DDR)

Architecture overview

The architecture is based on the design of the MOS 6502 CPU (yes that's the famous CPU used in the NES, Commodore VIC-20, Atari 2600, Apple IIe, etc.) but it is not exactly the same, that means that this project does not pretends to be a 6502 modern clone, we only based our efforts on its original design, because it seems quite simple and elegant.

Architecture modules overview

The Data Bus and Address Bus

This are the microprocessor Buses, they are used to transfer data or memory addresses between the modules inside and outside the CPU.

Here we need to explain two thing about how the buses work in LAPILU:

  1. The data bus can be N-Bit but N needs to be an even number greater or equal to 8 (Why? see the instruction register section).
  2. The Address bus can be M-Bit but M needs to be between N+2 and 2 times N (N+2<=M<=2N) (Why? see the Program counter section, the stack pointer section, and the interrupts section).

Register X and Y

This are only general purpose N Bit registers, the main purpose is that the programmers could use them to store data.

Acumulator

It holds the value for the A operand of the ALU and also the ALU puts the result in there after an operation is completed

ALU

The arithmetic logic unit, as the name implies, perfoms aritmetic and logic operations, the ALU in LAPILU can perform the following operations:

  • Sum with carry
  • Substraction
  • Increment by one
  • Bitwise OR
  • Bitwise AND
  • Bitwise NOT (ONES complement)
  • Bitwise XOR
  • Rotate through carry to left
  • Rotate through carry to right
  • Decrement by one
  • Transfer

Register B

It holds the value for the B operand of the ALU

Program counter LOW and HIGH

The program counter is the module that keeps track of what instruction we are going to execute, LAPILU assumes that your first intruction to execute is in memory address 0.

In LAPILU, the program counter is split in 2 halfs, LOW and HIGH (both N size) the size of the complete program counter is ALWAYS 2 times N, thats why the maximum length of the address bus (M) is 2N, because 2N is the maximum number the program counter can count.
When the program counter needs to output its data to the address bus, it will output the M less significant bits if M is less than 2N.

Memory address register

The purpose of this module is to store a memory address that can be output to the address bus, however this register is not directly available to the programmer, but is used internally for the execution of the instructions.

Stack pointer register

The purpose of this register is to store the value of the pointer to the stack.

But how the stack and the stack pointer works in LAPILU?

Well as you can see in the architecture diagram, the stack pointer is only N bits long but its purpose is to save a memory address and it could be M bits long and M could be between N+2 and 2N so, how it works?

The answer is easy, the remaining most significant bits are assumed to be the decimal value 1 so for example, considering an 8 bit data bus and an 16 bit address bus, the stack will be in the memory map from 0x0100 to 0x01FF or in binary form
from 0000 0001 0000 0000 to 0000 0001 1111 1111
Also, thats part of why the minimum value of M is N+2 because, at this point we need one more bit to fix the stack to that part of the memory map

The same rules applies to every other configuration of the buses.

Step counter

A single machine languaje o assembly instruction could need several steps to complete, the purpose of the step counter is to determine wich step of the instruction is been executed

Instruction register

The purpose of these register is to hold the binary representation of the instruction we are currently executing and make it available to the instruction decoder so it can handle it.

The binary OPCODES in LAPILU use 7 bits of this register, but is configured as the same size of the data bus, the even number closest to 7 is 8, that's why the minimum data bus size is 8

Processor status register

The purpose of this register is to hold the current status of the processor (also known as processor flags).
It is composed as follows.

Let's explain the meaning of every flag

C: It will turn on if the last executed instruction generated a carry.
O: It will turn on if the last executed instruction (signed) generated an overflow.
Z: It will turn on if the result of last executed instruction is Zero.
N: It will turn on if the most significant bit of the result of last executed instruction is turned on.
I: It defaults to one when the CPU starts, if is turned on, the CPU will ignore all the interrupts.

Instruction decoder

Its purpose is to receive the inputs from the status register, the instruction register, and the step counter to control the rest of the modules as the current instruction dictates.
But how does it work?
Well is just an enormous truth table that takes as input the signals from the status register, the instruction register, and the step counter and outputs an specific set of control signals to the different modules in the CPU in each clock cicle.

The control signals that LAPILU has are the following:



And the truth table that describes the behavior in each clock cycle is the following


Instruction set and addressing modes

Instruction set:

The addressing modes

LAPILU offers the following addressing modes:

  1. Direct: Uses the value passed as parameter in the machine lenguaje or assembly instruction to perform the operation.
  2. Absolute: Uses the value stored in the memory address passed as parameter in the machine lenguaje or assembly instruction to perform the operation.
  3. Zero - Page: As the absolute addressing does, it uses the value stored in the memory address passed as parameter in the machine lenguaje or assembly instruction to perform the operation, but this mode asumes that the HIGH part of the address is all 0, for example, assuming an CPU with an 8 bit data bus and a 16 bit address bus an instruction in absolute addressing mode would look like LDA $003A and this will consume more clock cycles to execute, but using the Zero - Page addressing mode you can write only LDA $3A and they will do the aparently same, but it will save some clock cycles. To keep it simple, it can be said that the Zero-Page addressing mode can be used when the address you are trying to access can be represented with the N least significant bits

Interrupts

An interrupt is an input signal to the processor indicating an event that needs immediate attention. An interrupt signal alerts the processor and serves as a request for the processor to interrupt the currently executing code, so that the event can be processed in a timely manner.

To indicate an interrupt to LAPILU the IRQ pin needs to go from 0 to 1, if the I flag is turned off (allowing interrupts), the CPU will complete the instruction that is currently executing, after that, it will push the values of the acumulator, register X , register Y, the processor status register, and program counter onto the stack, then, it will jump to the address located at the first memory address after the end of the stack (interrupt vector), and it will continue the execution from that point.

To ilustrate the location of the interrupt vector lets see an example, assuming a CPU configuration of and 8 bit data bus and a 16 bit address bus, we already know that the stack is located from the address 0x0100 to 0x01FF or in binary form

from 0000 0001 0000 0000 to 0000 0001 1111 1111

so, the interrupt vector will ve located at 0x0200 or in binary form

0000 0010 0000 0000


Also, thats why the minimum value of M is N+2 because,we need 2 more bits than the data bus to fix the interrupt vector to that direction in the memory map.

As we previously mention, when an interrupt is triggered, the CPU will continue the program execution from the address 0x0200, thats until it finds a RETI instruction, when this instruction is executed, the CPU will return to the state that it had before the interrupt was triggered (popping from the stack the previous values), and it will continue with the execution of the program normally.

Is worth saying that the CPU will stop listening to interrupts when an interrupt is already executing.


At this point we already finished the overview of the project, now more questions.

What is being worked on, what things are already working and what things are missing?.

  • Things completed
    • LAPILU is Turing Complete
    • Register X
    • Register Y
    • Acumulator
    • ALU
    • Register B
    • Program counter
    • Memory address register
    • Stack pointer register
    • Step counter
    • Instruction register
    • Processor status register
    • Instruction decoder (Control logic)
    • Interrupts
  • Things missing
    • None

Finally, Why the name of "LAPILU"?

Well thats quite simple, one of our members (Lizbeth) has a dog named Vilu, but normally we call her Pilu, we are from Mexico, so sometimes we refer to the dog as "La Pilu", the name is simply her name


She is Vilu <3

About

LAPILU is an N-Bit configurable soft-core microprocessor written in VHDL that is designed to be as simple as possible, aiming to be easy to understand for students, enthusiasts or engineers

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published