snapnet v1.0.0/Style

Release Date: 
May 31, 2025
Download: 
Type: 
Platform: 

snapnet is a codenet-compatible data transfer client for the Snappy cartridge. The Snappy cartridge (w/ SnappyROM) has an ESP-based implementation of an extended codenet server - this client works with that.

snapnet's first extension (of many to come) is transferring directly to an REU on the c64 side plus autodection of local servers. Aside from such extetensions, other protocol functions supported by the original codenet should work as expected e.g. The Final Replay cartrdge.

Recipes:

# discover snapnet servers on the LAN:
snapnet -d

# send a prg and run it to the first discovered snapnet server:
snapnet -A file.prg -r

# send two 'raw' binary files to $1000 and $c000 on a c64 endpoint:
snapnet -n 192.168.1.64 -p 6400 =0x1000,file1.obj =0xc000,file2.obj

# pipe a file directly from a d64 through snapnet to the c64 endpoint:
dm cat disk.d64:FILE.PRG | snapnet -n 192.168.1.64 -p 6400