Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/msaf9/bi-directional-code-converter
Bi-directional code converter: Binary code to Gray code & Gray code to Binary code.
https://github.com/msaf9/bi-directional-code-converter
binary gray java logisim
Last synced: about 7 hours ago
JSON representation
Bi-directional code converter: Binary code to Gray code & Gray code to Binary code.
- Host: GitHub
- URL: https://github.com/msaf9/bi-directional-code-converter
- Owner: msaf9
- License: mit
- Created: 2022-05-01T10:41:12.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2024-03-10T04:27:27.000Z (8 months ago)
- Last Synced: 2024-03-10T05:29:55.359Z (8 months ago)
- Topics: binary, gray, java, logisim
- Language: Java
- Homepage:
- Size: 117 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Bi-directional code converter: Binary code to Gray code & Gray code to Binary code.
Table of contents
- [Introduction](#introduction)
- [Course Information](#course-information)
- [Table](#table)
- [Tool](#tool)
- [Project status](#project-status)
- [Installation](#installation)
- [Get repository](#get-repository)
- [License](#license)## Introduction
Design and development of Bi-directional code converter: Binary code to Gray code & Gray code to Binary code using Logisim.### Course Information
- Course Name: Digital System Design
- Course Code: 15EC1101
- Course Credits: 4
- Academic Year: 2016 - 17### Table
| Decimal Number | Binary Code | Gray Code |
| :------------: | :---------: | :-------: |
| 0 | 0000 | 0000 |
| 1 | 0001 | 0001 |
| 2 | 0010 | 0011 |
| 3 | 0011 | 0010 |
| 4 | 0100 | 0110 |
| 5 | 0101 | 0111 |
| 6 | 0110 | 0101 |
| 7 | 0111 | 0100 |
| 8 | 1000 | 1100 |
| 9 | 1001 | 1101 |
| 10 | 1010 | 1111 |
| 11 | 1011 | 1110 |
| 12 | 1100 | 1010 |
| 13 | 1101 | 1011 |
| 14 | 1110 | 1001 |
| 15 | 1111 | 1000 |## Tool
- Logisim## Project status
> **Completed**## Installation
### Get repository
```git
git https://github.com/msaf9/bi-directional-code-converter.git
cd bi-directional-code-converter
```## License
[MIT License](LICENSE)