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


DCHAR Search:

In Graphics Words in TurboForth Kernal

Word Name: DCHAR
Type: Standard word
Data Stack Signature: address len ascii --
Return Stack Signature: --
Availability: V1.0  V1.1  V1.2
Description:

Defines the character with the code ascii using len cells of data found at address. Normally used in conjunction with DATA.

Example:

: TEST ( -- )
  DATA 4 $FFFF $FFFF $FFFF $FFFF 65 DCHAR ;

Re-defines the character A as a solid block.

Comment:

none

See Also: DATA 

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