Title and Description Entities

The following example shows the BGL file format of title and description entities.

;DATABASE HEADER ********************************************************
dw0001;00 world set number (not saved to file list)
.
.
ddTITLE_DATA;106 TITLE AND DESCRIPTION DATA

The following example shows title and description data in a BGL file.

;TITLE AND DESCRIPTION DATA *************************************************
;OBJECT ENTITY OPCODE DEFINITIONS -
;Op    Format  Definition
;-----------------------------------------------------------------
;1     db1TITLE
;       (see macro below)
;3     db 2    DESCRIPTION
;(see macro below)
TITLE_INFOmacro
db01;;opcode
db31 dup (0);;31-char asciiz title string
endm

DESCRIPTIONmacro
db02;;opcode
db256 dup (0);;256-char asciiz description string
endm

TITLE_DATA:
rel_base=TITLE_DATA
TITLE_INFO
DESCRIPTION
EOL