1
1
mirror of https://github.com/wader/fq.git synced 2024-11-22 15:45:45 +03:00

Merge pull request #999 from mrcook/tzx-readme-byte-array

tzx: add readme instructions for bits_format=byte_array
This commit is contained in:
Mattias Wadman 2024-08-21 23:28:14 +02:00 committed by GitHub
commit 656bb50107
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 36 additions and 0 deletions

View File

@ -1223,6 +1223,15 @@ You will often find this format embedded inside the TZX tape format.
The default file extension is `.tap`.
### Processing JSON files
When needing to process a generated JSON file it's recommended to convert the
plain data bytes to an array by setting `bits_format=byte_array`:
```bash
fq -o bits_format=byte_array -d tap -V d /path/to/file.tap
```
### Authors
- Michael R. Cook work.mrc@pm.me, original author
@ -1413,6 +1422,15 @@ the company Ramsoft became the maintainers, and created revision `v1.20`.
The default file extension is `.tzx`.
### Processing JSON files
When needing to process a generated JSON file it's recommended to convert the
plain data bytes to an array by setting `bits_format=byte_array`:
```bash
fq -o bits_format=byte_array -d tzx -V d /path/to/file.tzx
```
### Authors
- Michael R. Cook work.mrc@pm.me, original author

View File

@ -7,6 +7,15 @@ You will often find this format embedded inside the TZX tape format.
The default file extension is `.tap`.
### Processing JSON files
When needing to process a generated JSON file it's recommended to convert the
plain data bytes to an array by setting `bits_format=byte_array`:
```bash
fq -o bits_format=byte_array -d tap -V d /path/to/file.tap
```
### Authors
- Michael R. Cook work.mrc@pm.me, original author

View File

@ -8,6 +8,15 @@ the company Ramsoft became the maintainers, and created revision `v1.20`.
The default file extension is `.tzx`.
### Processing JSON files
When needing to process a generated JSON file it's recommended to convert the
plain data bytes to an array by setting `bits_format=byte_array`:
```bash
fq -o bits_format=byte_array -d tzx -V d /path/to/file.tzx
```
### Authors
- Michael R. Cook work.mrc@pm.me, original author