diff options
Diffstat (limited to 'DOS-asm/readme.txt')
-rw-r--r-- | DOS-asm/readme.txt | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/DOS-asm/readme.txt b/DOS-asm/readme.txt new file mode 100644 index 0000000..a3c0f47 --- /dev/null +++ b/DOS-asm/readme.txt @@ -0,0 +1,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
|