blob: a3c0f4716037668c050d420c611c83b855e6c870 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
This is a compact 16-bit assembly implementation of the basE91 encoder for DOS.
It encodes from standard input to standard output. Minimum system requirements:
DOS 2.0, 8086 processor
Example usage:
b91enc < file.bin > file.b91
Assemble with NASM [http://nasm.sourceforge.net/]:
nasm -O2 -o b91enc.com b91enc.asm
|