All Projects → TricksterGuy → Complx

TricksterGuy / Complx

Licence: gpl-3.0
Extensible LC-3 Simulator (GUI and CLI), Assembler, and Autograder/Test Framework written in C++. Mainly used in CS2110 at Georgia Tech

Programming Languages

assembly
5116 projects

Labels

Projects that are alternatives of or similar to Complx

8085
A Simulator for 8085 programs,
Stars: ✭ 10 (-80%)
Mutual labels:  simulator
Sibyl
Platform for backtesting and live-trading intraday Stock/ETF/ELW using recurrent neural networks
Stars: ✭ 32 (-36%)
Mutual labels:  simulator
Unityros2
Stars: ✭ 41 (-18%)
Mutual labels:  simulator
Ksim
The little simulator that could.
Stars: ✭ 11 (-78%)
Mutual labels:  simulator
Azureeventgridsimulator
A simulator that provides endpoints to mimic the functionality of Azure Event Grid topics and subscribers and is compatible with the Microsoft.Azure.EventGrid client library.
Stars: ✭ 29 (-42%)
Mutual labels:  simulator
Pioneer
A game of lonely space adventure
Stars: ✭ 979 (+1858%)
Mutual labels:  simulator
Rubber Ducky Library For Arduino
An Arduino library that allows you to use a cheap Arduino (Leonardo) as a Rubber Ducky
Stars: ✭ 25 (-50%)
Mutual labels:  simulator
Uselfdrivingsimulator
Self-Driving Car Simulator
Stars: ✭ 48 (-4%)
Mutual labels:  simulator
Isimulator
iSimulator is a GUI utility to control the Simulator, and manage the app installed on the simulator.
Stars: ✭ 963 (+1826%)
Mutual labels:  simulator
Wepsim
WepSIM: Web Elemental Processor SIMulator
Stars: ✭ 38 (-24%)
Mutual labels:  simulator
Tko Electronics Sim
A cross-platform app that allows for building and simulating FRC electronics in real time.
Stars: ✭ 28 (-44%)
Mutual labels:  simulator
Duckietown.jl
Differentiable Duckietown
Stars: ✭ 29 (-42%)
Mutual labels:  simulator
Sst Elements
SST Architectural Simulation Components and Libraries
Stars: ✭ 36 (-28%)
Mutual labels:  simulator
Atmsimulator
Used the notion of threads and parallelism to make a ATM Simulator.
Stars: ✭ 11 (-78%)
Mutual labels:  simulator
Metalperformanceshadersproxy
A proxy for MetalPerformanceShaders which takes to a stub on a simulator and to the real implementation on iOS devices.
Stars: ✭ 41 (-18%)
Mutual labels:  simulator
Sesc
Unofficial clone of SESC. Builds with modern C++ compilers.
Stars: ✭ 8 (-84%)
Mutual labels:  simulator
Mipsgo
MIPS Simulator written in Go
Stars: ✭ 34 (-32%)
Mutual labels:  simulator
Holodeck Engine
High Fidelity Simulator for Reinforcement Learning and Robotics Research.
Stars: ✭ 48 (-4%)
Mutual labels:  simulator
Bullet3
Bullet Physics SDK: real-time collision detection and multi-physics simulation for VR, games, visual effects, robotics, machine learning etc.
Stars: ✭ 8,714 (+17328%)
Mutual labels:  simulator
Blender Flip Fluids
FLIP Fluids is a powerful liquid simulation plugin that gives you the ability to create high quality fluid effects all within Blender, the free and open source 3D creation suite.
Stars: ✭ 983 (+1866%)
Mutual labels:  simulator

complx

This repository is deprecated, All new development will be done here complx-tools

Extensible LC-3 Simulator written in C++. Includes a Graphical User Interface and Command Line Interface simulator, Assembler, Python Bindings, and Python Autograder (Examples)[https://github.com/TricksterGuy/pylc3-examples]. Mainly used in CS2110 at Georgia Tech. Maintained by Brandon (bwhitehead0308 [AT] gmail [DOT] com).

Special Note Let me know if your school is using any portion of the tools provided here. The tools are subject to change every semester as new features are added or stuff is tweaked based on student feedback. I don't want to break anyone's setup, and would like to keep users in the loop with changes and suggest features.

Overview

complx is a suite of educational tools for learning lc3 assembly. It includes both a gui and cli based simulator (named complx and comp respectively), an assembler (as2obj), python bindings via pyLC3, and an autograder framework written in python. Complx also be extended with plugins that add additional functionality to the LC3. The tools also come with a C++ interface to the LC3 (liblc3) along with python bindings to it via pyLC3. Complx, the GUI simulator, was written using the wxWidgets library.

Installation

Installing Prebuilt Binaries

Build Instructions for Linux

Features

  • Both a textual and graphical user interface available
  • Support for all instructions including LC3 interrupts.
  • Support for the LC-3 calling convention
  • Comes with its own assembler
  • Many options for running assembly code
    • Such as:
      • Backstepping/Undoing instructions
      • Stepping into/out/over a subroutine
      • Running X number of instructions
  • Powerful Debugger
    • Ability to set breakpoints at specific locations
    • Ability to create watchpoints which trigger when a write to a register/memory location happens
    • Ability to set a temporary breakpoint/watchpoint that only triggers X times
    • Ability to mark a subroutine/trap as a blackbox and have the simulator automatically step over it
    • For the above ability to add a condition for the breakpoint/watchpoint to trigger
    • Ability to define all of the above in the assembly source file for easier debugging (and won't affect the grader)
    • Ability to view the activation stack and view subroutine parameters and rewind to a subroutine call
  • Interface
    • Full view of LC-3 Memory with the ability to edit values in hexadecimal, decimal, binary, instruction, or add/edit/remove a label
    • Registers values can be edited and be displayed in different bases
    • Can also have multiple views of the lc-3 memory (useful for viewing the stack and the program at the same time)
    • Can rearrange memory view, and filter out memory addresses you don't care about
    • Console which accepts input and displays output (and various warnings)
    • Can view comments from code from within simulator
  • Python bindings and a Python autograder framework via pyLC3
  • Ability to extend complx via plugins
    • Currently complx ships with 5 plugins
      1. Black and white Display device
      2. Colored Display device
      3. Random number generator that can be seeded via a write to its address
      4. Plugin that changes opcode 0xD with a multiplication instruction
      5. Plugin that adds a new trap that performs division and modulus
    • Plugins can add new device registers, traps, send interrupts, and add a new instruction

Screenshot

Main Screen

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].