All Projects → leros-dev → leros

leros-dev / leros

Licence: BSD-2-Clause license
A Tiny Processor Core

Programming Languages

VHDL
269 projects
java
68154 projects - #9 most used programming language
scala
5932 projects
GAP
223 projects
assembly
5116 projects
Makefile
30231 projects

CI

Leros, a Tiny Processor Core

An FPGA optimized tiny processor core for embedded systems. See more documentation on the github.io website for Leros.

This repository contains two versions of Leros: the initial 16-bit version in VHDL and the redesign of 16/32/64-bit version in Chisel. The two versions are in the same spirit, but not compatible. The initial version exposes the pipeline to the programmer. The initial version is supported by a small Java runtime (muvium).

The new version is pipeline agnostic and also has a slightly different ISA. The new version is supported by a C compiler (LLVM port.)

Questions

  • Is load immediate sign extending?
  • What is sign extending?
  • byte order:
    • Morten's simulator (and presumable compiler) is little-endian
    • Martin's ISA simulator is little-endian
    • Patmos is probably big-endian
    • Internet is big-endian
    • RISC-V is little-endian

Implementation Notes (Leros 16)

Pipeline discussion:

  • Maybe decoding and sign extension into fetch
  • Play around with the pipeline registers when (1) more complete ALU and (2) longer programs (= block RAM)
  • Several different pipeline organizations might be interesting

Fmax

We target a very high fmax in an FPGA to compensate for the more instructions execute.

Initial measurement on DE2-115 with almost no function and debug output (e.g., accu) in registers: 184 MHz. Could be better.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].