Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/yanorei32/binary-mixer
A simple binary mix utility. This created for decode a ROM of 8-bit EPROM x2 used as 16-bit EPROM.
https://github.com/yanorei32/binary-mixer
eprom
Last synced: 4 days ago
JSON representation
A simple binary mix utility. This created for decode a ROM of 8-bit EPROM x2 used as 16-bit EPROM.
- Host: GitHub
- URL: https://github.com/yanorei32/binary-mixer
- Owner: yanorei32
- License: bsd-2-clause
- Created: 2023-04-10T13:20:09.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2024-04-02T13:19:29.000Z (7 months ago)
- Last Synced: 2024-04-02T14:36:01.974Z (7 months ago)
- Topics: eprom
- Language: Rust
- Homepage:
- Size: 127 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Binary Mixer
![GitHub](https://img.shields.io/github/license/yanorei32/binary-mixer)
A simple binary mix utility.
This created for decode a ROM of 8-bit EPROM x2 used as 16-bit EPROM.![image](https://user-images.githubusercontent.com/11992915/231426589-7beeb5bd-6bda-4486-8f01-0d73654dd917.png)
## Installation
```bash
cargo install --git https://github.com/yanorei32/binary-mixer
```## How to
### Mix mode
```bash
$ binary-mixer mix <(echo -n "Hlo") <(echo -n "el!") out0
$ xxd out0
00000000: 4865 6c6c 6f21 Hello!
$
```### Split mode
```bash
$ binary-mixer split <(echo -n "Hello!") out0 out1
$ xxd out0
00000000: 486c 6f Hlo
$ xxd out1
00000000: 656c 21 el!
$
```