You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The obvious commands to add are: Upload ROM and Set CIC Type. Some nice to haves would be Set Save Type, Cart Info, and some commands to arbitrarily send and receive data (e.g. for emulating stdin, stdout, stderr, GDB stub, etc.)
There is another project that uses the serial tty interface instead of libftdi: https://github.com/tj90241/64drive This interface should be available on every major OS. E.g. something like /dev/ttyUSB0 or /dev/ttyS4 on Linux and macOS, and COM4 in Windows. The serialport crate looks handy.
The text was updated successfully, but these errors were encountered:
The obvious commands to add are:
Upload ROM
andSet CIC Type
. Some nice to haves would beSet Save Type
,Cart Info
, and some commands to arbitrarily send and receive data (e.g. for emulatingstdin
,stdout
,stderr
, GDB stub, etc.)There is a crate available for communication with 64Drive: https://github.com/awygle/r64drive It depends on
libftdi
which is not ideal.There is another project that uses the serial
tty
interface instead oflibftdi
: https://github.com/tj90241/64drive This interface should be available on every major OS. E.g. something like/dev/ttyUSB0
or/dev/ttyS4
on Linux and macOS, andCOM4
in Windows. Theserialport
crate looks handy.The text was updated successfully, but these errors were encountered: