Name

c-toggle:forth_usual — ordinary primitive

Synopsis

FORTH

CTOGGLE ( n addr -- )();
p4:"c-toggle";

Description

toggle bits in byte at given address

 simulate:
   : CTOGGLE  TUCK @ SWAP XOR SWAP ! ;