Previous Topic: PEEK Return Codes

Next Topic: POKE Return Codes

EPI POKE—Modify Screen Buffer Contents

Use this command to modify the contents of the virtual terminal screen buffer. POKE under EPI does not read the contents of row 0.

This command has the following format:

ADDRESS EPI "POKE keywords"
/* You must specify a value for each keyword.   */
  {termname|*}
  {row}
  {col}
  {poketext}
termname

Defines the virtual terminal for which you want to modify buffer contents.

*

Specifies the current terminal defined through the SETTERM command.

row

Specifies the number of the screen row where altering of buffer contents begins.

col

Specifies the number of the screen column where altering of buffer contents begins.

poketext

Provides a character string or a hexadecimal string enclosed in quotation marks. The value is the actual 3278 buffer code.

Example: EPI POKE

The following shows buffer code representing the string READY at column 2 of row 22:

POKE TERM4 22 2 “D9 C5 C1 C4 E8 20”x