You can declare pointers to types just like you can in most high-level languages.

Syntax

type PTR

This declares a pointer to the data type type.

Example

The type

CHAR PTR

declares a pointer to a character. The built-in type ADDR is identical to the type BYTE PTR.