Giter Site home page Giter Site logo

shetaye / omega-cpu Goto Github PK

View Code? Open in Web Editor NEW
1.0 1.0 0.0 1.6 MB

A 32-bit RISC CPU written in VHDL

License: GNU Lesser General Public License v3.0

Python 12.38% VHDL 63.71% C 0.39% Assembly 3.00% Makefile 0.31% HTML 1.67% Batchfile 4.17% Shell 7.39% Tcl 3.23% Stata 2.74% SystemVerilog 1.03%
computer cpu emulator vhdl

omega-cpu's Introduction

๐Ÿ‘‹

Interesting Projects

๐Ÿงฎ Omega CPU 2015 - 2018

The Omega CPU was my first major project. It is a 32-bit RISC processor with a custom instruction set and assembly language written in VHDL and deployed on a Xilinx Spartan-6 FPGA. I developed it with the assistance of mentors at the Bakken museum.

๐Ÿ•Š Athena 2018 - 2021

Athena is a proof-of-concept Discord bot that moderates servers through direct democracy. It was developed on and off from 2018 to 2021, and is the third iteration in the project (the other two being DDD and Direkt). Athena (then called DDD) was at first a chat-only service which moved to a web platform (like mee6). It is written using Vue, Node.JS, SQL and Discord.JS.

Other things I've worked on

๐Ÿฆพ FRC Robot 2020 - 2022

I particpated in my Highschool's FRC robotics team, Team BJORG. I contributed to the 2020 robot as a software developer and the 2022 robot as control systems lead. All of our code is on GitHub. The robot is programmed in Java and was an exercise in repository management considering the number of active developers we had.

omega-cpu's People

Contributors

schwerdf avatar shetaye avatar

Stargazers

 avatar

Watchers

 avatar  avatar

omega-cpu's Issues

Mangle label names in library functions.

The label names in the functions in the lib directory are of a sort that could be easily used in a user program (e.g., end), which is a problem since these labels are in a global namespace and hence have to be globally unique.

This problem could be alleviated by mangling the names to something much less likely to be used in a user program (e.g., print_string__end).

Add assembler alerts for segment overlap.

When segment addresses are explicitly specified in the assembler, there may potentially be two or more instructions assigned to the same memory address (if, for example, two segments are given the same address).

Currently, the assembler handles this by the deterministic, but potentially confusing route of silently disambiguating in favor of the last instruction or directive, in document order. It might improve usability if the assembler alerted the user to any overlap.

Upper word of multiply product is unused.

When performing a multiplication, the ALU outputs the upper 32 bits of the product to the "register D" output, but this value goes unused by the controller. The R[D] field should be added to the multiply instruction to provide an outlet for this value.

Eliminate duplicate opcodes for SLLV, SLL, and EQ.

The instructions SLLV, SLL, and EQ` are usable with two different opcodes, as shown in Table 6 of the documentation. The duplicate opcodes, which the assembler does not use, should raise an "invalid instruction" trap instead.

Traps are ignored.

Currently, although trap events such as divide overflow are raised within the processor, their handlers are no-ops and the program has no way of knowing that an error occurred. Eventually, these should be handled as interrupts.

Word alignment is not enforced.

It is possible to assign a value to the program counter that is not a multiple of 4, whether by outputting directly to register 31, or by using a register-mode jump instruction. Since instructions are always at word-aligned addresses (multiples of 4), this would cause some highly unexpected behavior.

This should be prevented by fixing the lower two bits of the PC permanently at zero.

Register 29 is used in two incompatible ways.

Currently, whenever an interrupt is triggered and serviced, the return address is supposed to be written to register 29.

However, register 29 is also usable as a general-purpose register and is designated by the calling convention as holding the return address from ordinary functions. This will cause a problem whenever an interrupt is serviced in the middle of a function call, wiping out the return address.

Race condition in output to register 30.

In the operations that write to register 30 as a status register (carry bit), if register 30 is also designated as the operation's "output" register, it is unclear what value actually gets written.

This should be clarified, probably by removing the ability to write to register 30 as a general-purpose register.

What does opcode 111 do?

It is unclear what happens when the processor encounters an instruction with the "reserved" opcode 111. This should be clarified and an "invalid instruction" trap raised on such an instruction.

Add support for different output targets in assembler.

Currently, the assembler produces its machine-code output in lines of binary originally intended for a GHDL test bench. A post-process script exists to convert it to VHDL array format. There is no provision for straight binary output.

The assembler itself should support these three output formats, as it was originally designed. This can be done by adding new visitor classes alongside TextOutputVisitor and adding a command-line switch to choose among them when the finalOutput function is called:
https://github.com/Hyperion302/omega-cpu/blob/e6e8a70d20045856365634b33294ff635fceb88d/Assembler/OmegaAssembler.py#L963

DIVI incorrectly uses divide-mode bit.

The divide-immediate instruction (DIVI), like its register counterpart, uses the least significant bit of its instruction as the "divide mode" bit to select between signed and unsigned mode.

However, this bit is also part of the immediate value, so any division by an even number is done in unsigned mode and any division by an odd number in signed mode.

To resolve this, DIVI must ignore the DM bit and operate exclusively in one mode or the other.
The documentation currently designates it as operating in signed mode.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.