Atari 8bit: ATASCII Convert tools

This commit is contained in:
Carsten Strotmann 2020-07-26 13:25:08 +02:00
parent 6532beb620
commit df2c73423d
2 changed files with 8 additions and 0 deletions

4
tools/from-atascii.sh Executable file
View File

@ -0,0 +1,4 @@
#!/bin/sh
# converts from ATASCII (Atari 400/800/XL/XE) to ASCII
tr '\233\177' '\12\11' < ${1} > ${2}

4
tools/to-atascii.sh Executable file
View File

@ -0,0 +1,4 @@
#!/bin/sh
# converts from ASCII to ATASCII (Atari 400/800/XL/XE)
tr '\12\11' '\233\177' < ${1} > ${2}