A program that splits an input file into 2 files, where the lower/even bytes end up in one file and the upper/odd bytes end up in another. Useful for programming systems with a 16-bit data bus width that consists of 2 8-bit ROMs.
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
[package]
|
|
name = "bitsplit"
|
|
version = "0.1.0"
|
|
authors = ["Stephen <webmaster@scd31.com>"]
|
|
edition = "2018"
|
|
description = "A program that splits an input file into 2 files, where the lower/even bytes end up in one file and the upper/odd bytes end up in another. Useful for programming systems with a 16-bit data bus width that consists of 2 8-bit ROMs."
|
|
repository = "https://git.scd31.com/stephen/bitsplit"
|
|
license = "MIT"
|
|
readme = "README.md"
|
|
|
|
[dependencies]
|