6.1.0680
ABORT"
abort-quote
CORE
Interpretation:
Interpretation semantics for this word are undefined.

Compilation:
( "ccc<quote>" -- )

Parse ccc delimited by a " (double-quote). Append the run-time semantics given below to the current definition.

Run-time:
( i * x x1 -- | i * x ) ( R: j * x -- | j * x )

Remove x1 from the stack. If any bit of x1 is not zero, display ccc and perform an implementation-defined abort sequence that includes the function of ABORT.

Rationale:
Typical use: : X ... test ABORT" ccc" ... ;