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


@++ Search:

In Memory Access Words in TurboForth Kernal

Word Name: @++
Type: Standard word
Data Stack Signature: address - address+2 value
Return Stack Signature: --
Availability: V1.0  V1.1  V1.2
Description:

The cell at address is read and the value pushed to the stack, above the address. Address is incremented by 2, ready for @++ to be called again. Note, TurboForth V1.0 has a different stack signature. Please see comments.

Example:

None.

Comment:

Note: In version 1.0, the output stack signature is reversed.

Version Stack Signature
1.0 address -- value address+2
1.1 address -- address+2 value
1.2 address -- address+2 value

 

See Also: @ 

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