nimblemachines / muforth

A simple, indirect-threaded Forth, written in C; for target compiling; runs on Linux, BSD, OSX, and Cygwin
https://muforth.dev/
Other
131 stars 30 forks source link

Pico: Definition of ack>/ack< missing after latest commit #24

Closed anarchitech closed 3 years ago

anarchitech commented 3 years ago

commit 33394be397eb49269e03876d81fe43467f2a6678 removed the definition of ack>/ack< from target/ARM/debug/picoboot.mu4

Until fixed, patch by hand, insert below definition of pico>

( Transferring data)
: ack> pad 0 uread ;
: ack< pad 0 uwrite;
anarchitech commented 3 years ago

If you change values to 1, you will get joy on OpenBSD and be able to chat with the target:

( Transferring data)
: ack> pad 1 uread ;
: ack< pad 1 uwrite;
anarchitech commented 3 years ago

Fixed by commit 2a9fea0