[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Xmodem
- Subject: Xmodem
- From: Alex Freed <alex_news@alexfreed.com>
- Date: Mon, 16 Jul 2012 18:40:04 -0700
- Bytes: 1476
- Newsgroups: comp.sys.apple2
- Organization: Aioe.org NNTP Server
- User-agent: Mozilla/5.0 (Windows NT 5.1; rv:13.0) Gecko/20120614 Thunderbird/13.0.1
OK, as promised here is the source and the binary and even a .DO image
with both binaries.
http://alexfreed.com/FPGApple/xmodem.zip
The (almost) original version xmod.a requires the transmitted file to
have the destination address in the first 2 bytes. This works fine if
you assemble the source say with ACME and set the output to "cbm" format
that does exactly that - prepends the address in low endian format.
However to work with arbitrary raw binary files I made a new version -
xmod1.a
This one asks for the destination address in hex. 4 digits expected, so
to load to $800 enter "0800".
The SSC is expected to be in slot 2 and is not initialized, so the first
time do "IN#2".
Have fun.
-Alex.