Skip to content

Releases: DrakeSeteraO/5-Bit-Computer-Emulator

Version 4.2

22 Jul 17:29
b6a6fed

Choose a tag to compare

  • Added the import function to 5 Bit Language
  • Added the ability to get assembly from compileCode object
  • Added the ability to get a list of instructions from compileCode object

Version 4.1

21 Jul 23:31
af0bf35

Choose a tag to compare

  • Fixed greater than Boolean
  • Fixed less than or equal to Boolean

Version 4

21 Jul 17:06
476c0cf

Choose a tag to compare

  • Fixed Error with subtracting
  • Added Computer Unit Test
  • Added 5 Bit Language Unit Tests
  • Added Boolean operations
  • Fixed NOT operation

Version 3

11 Jun 17:43
1c9e49b

Choose a tag to compare

  • Added new code format called Base 5 that is Binary code, but in base 5
  • Added the ability to convert 5-bit Language to Base 5
  • Added the ability to convert 5-bit Assembly to Base 5
  • Added the ability to convert Binary to Base 5
  • Added the ability to convert Base 5 to Binary
  • Fixed overflow error in the 5-bit computer's addition

Version 2.2

09 Jun 22:43
f0f4b22

Choose a tag to compare

  • Added doc string header to CompileCode.py
  • Made CompileCode.py more readable

Version 2.1

08 Jun 05:46
abe43fb

Choose a tag to compare

  • Added header doc strings to most files explaining the file's purpose
  • Added date modified and version number in files
  • Added doc strings to most functions to explain their functions
  • Removed whitespace
  • Altered code to be more readable in certain spots

Version 2

23 May 16:56
f09d1b4

Choose a tag to compare

Created a C-level coding language called 5 Bit Language, which compiles to computer binary.

Features of the 5-bit language:

  • Can create (int) and (char) variables
  • Can change data stored in variables
  • Can do basic math "+, -, &, |, ^, ()"
  • Can do math on variables
  • Can Print integers, characters, and data stored in variables

Version 1

06 May 02:20
e538853

Choose a tag to compare

Base 5 Bit Computer Emulator with Binary and Assembly language and examples.