Skip to main content

An emulator for the RSC architecture written in Python.

Project description

pythonRSC ( Relatively Simple Computer in Python )

pythonRSC is an emulator for the RSC architecture written in Python.

With this program, you can generate bytecode from microcode files for Logisim or just emulate microcode files out right. Soon, you will be able to debug and follow control flow within the emulator and efficiently find bugs.

Installing pythonRSC

To download the package, you can simply use pip.

pip install pythonRSC

Emulating your microcode using pythonRSC

After downloading the package, you should have access to a command called 'pythonRSC'. To use this command, you will need a microcode file to emulate. There are some test files provided.

pythonRSC run microcode.txt

This will parse the given microcode and output the state at the end of emulation.

Generating bytecode using pythonRSC

If you desire to use the in-built assembler to parse the microcode into logisim bytecode, there is a command for that. You will need to provide a microcode input file and it requires an output file to function.

pythonRSC assembler microcode.txt output.txt

Using pythonRSC as a library

To use this package as a library, you can simply import the classes that you wish to use in your own python code. To learn more about those classes, you will need to read the source code.

This example shows some in-built functions inside of pythonRSC that you could use.

from pythonRSC import pyRSC


pyRSC = pyRSC.RSC("..\\tests\\avg.txt")
pyRSC.run() # Runs the given instructions and gives you an output!
pyRSC.assembler.logisim_format("output.txt") # Logisim-formatted binary output
pyRSC.debugger.disas_rang(0x0, 0x17) # Disassemble a range of instructions

Emulating and debugging your microcode using pythonRSC

If you want to debug your program, pythonRSC provides an easy-to-use debugger similar to GDB Debugger. To start the emulator with the debugger, use this command. This portion of the emulator is subject to change and may produce bugs, but it is usable and useful!

pythonRSC debug microcode.txt

After executing, you will be met with a blinking >> awaiting your next command. The list of commands accepted by the debugger are listed below.

stepi [stepsize] This will 'step' forward once if stepsize is not provided, otherwise it will step as many times as provided in stepsize

bp [addr|label] This will set a breakpoint at the given address in hex or decimal or at a given label. Breakpoints are enabled on initialization.

enable [addr|label] This will turn on a breakpoint if it was disabled.

disable [addr|label] This will turn off a breakpoint.

disas [start] [end] This will take a range of addresses and disassemble the instructions. Hexadecimal or decimal.

disas This variation of the disassemble command will try to identify if you are inside a label and disassemble that label for you. This is under construction and may produce bugs.

print [type] [reg] This will print a register in your desired format (type). The types are /d (decimal) /t (binary) /x (hexadecimal)

info This will print the current state of the emulator, in other words print all registers.

help This will just list the possible commands.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pythonRSC-0.1.5.tar.gz (22.5 kB view details)

Uploaded Source

Built Distribution

pythonRSC-0.1.5-py3-none-any.whl (22.8 kB view details)

Uploaded Python 3

File details

Details for the file pythonRSC-0.1.5.tar.gz.

File metadata

  • Download URL: pythonRSC-0.1.5.tar.gz
  • Upload date:
  • Size: 22.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.11.0

File hashes

Hashes for pythonRSC-0.1.5.tar.gz
Algorithm Hash digest
SHA256 a17071f8bd77baf3767028ad01ba80464dcd4a9e7a8ce0c104d0205201d65bc0
MD5 d843b3c9555f94b86d642f5a0125fd1c
BLAKE2b-256 e4a127e76d0d91e30e9ebca747073cdffb6307e7528ba50df4821362cfcfc507

See more details on using hashes here.

File details

Details for the file pythonRSC-0.1.5-py3-none-any.whl.

File metadata

  • Download URL: pythonRSC-0.1.5-py3-none-any.whl
  • Upload date:
  • Size: 22.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.11.0

File hashes

Hashes for pythonRSC-0.1.5-py3-none-any.whl
Algorithm Hash digest
SHA256 4907b41092595fa71e4dc7afbe86949dca62016f7aaf3c376beb1dcff1b56a3f
MD5 014eb30d4b9c4cbab39d0e5c83f211e0
BLAKE2b-256 47ce825ae44273b6433d600bf38cd3e4ca51063710e8b19375d64e31994059e2

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page