https://github.com/permutationlock/superscalar_processor
Superscalar 8 bit processor made in logisim and corresponding assembly language to bit code compiler.
https://github.com/permutationlock/superscalar_processor
logisim processor-architecture superscalar
Last synced: about 2 months ago
JSON representation
Superscalar 8 bit processor made in logisim and corresponding assembly language to bit code compiler.
- Host: GitHub
- URL: https://github.com/permutationlock/superscalar_processor
- Owner: permutationlock
- License: mit
- Created: 2015-05-30T01:59:58.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2015-07-16T00:54:15.000Z (almost 10 years ago)
- Last Synced: 2025-01-14T15:42:00.109Z (4 months ago)
- Topics: logisim, processor-architecture, superscalar
- Language: Python
- Size: 168 KB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: readme.txt
- License: LICENSE
Awesome Lists containing this project
README
Superscalar processor in Logisim
--------------------------------
In this project I designed a simple 8 bit superscalar
processor in the free Logisim software. You can try
the processor by opening the circuit in logisim and
switching the clock to observe what happens.Files:
presentation.pdf
- Explaines the basics of my assembly language.superscalar_proc.circ
- The Logisim circuit file for my processor.myasm.py
- Python compiler that builds x86 style asm to my
bit code.
test.asm
- The assembly that was compiled and is already
loaded into memory in superscalar_proc.circ.test.asm.bits
- The compiled assembly code from test.asm.