<< Home | About Forth | About TurboForth | Download | Language Reference | Resources | Tutorials | YouTube >>


TERMINAL? Search:

In Console I/O Words in TurboForth Kernal

Word Name: TERMINAL?
Type: Standard word
Data Stack Signature: -- flag
Return Stack Signature: --
Availability: V1.0  V1.1  
Description:

Scans keyboard and tests for break (FCTN & 4). Returns TRUE if detected, else returns FALSE.

Example:

none

Comment:

TERMINAL? has been removed from version 1.2 to make space in the EPROM for other functionality. It can be defined thus:

: TERMINAL ( -- flag ) KEY? 2 = ;

See Also: BREAK?  KEY  KEY? 

<< Home | About Forth | About TurboForth | Download | Language Reference | Resources | Tutorials | YouTube >>