Artifact a5c85ce852185a6b13eac6dfd73769175bd22426:
- File library-f0/furs-utils.fs — part of check-in [a527438a1d] at 2025-10-26 10:58:24 on branch trunk — Added 'library-f0' directory containing useful Words for this project (user: tp size: 202)
: bfs! ( cmsis-name x -- x ) swap lshift swap bis! ; \ SET the bit(s) : bfc! ( cmsis-name x -- x ) swap lshift swap bic! ; \ CLEAR the bit(s) : enable! ( -- ) 1 bfs! ; : disable! ( -- ) 1 bfc! ;