Syntax
DV datatype [= initializer]
Description
This directive reserves space for a data item of type datatype and optionally initializes it to a value. The initializer is a comma separated list of numbers and strings.
Important notes
The location counter is not aligned before allocating space.
Example
x DV WORD = 12
This defines the label x to be a WORD variable initialized to 12.