"
"  This deck collects the binding directives, linker commands and the build_real_memory commands to build the boot
"  memory image. This deck should be expanded and then do an 'include_file' to create the various command files.
"
"  NOTE: There is a very tight coupling between this deck and the procedure link_boot due to the
"  variables created by this deck.
"

create_variable bind_boot_job_commands    kind=(string, $max_name) value=$unique
create_variable bind_boot_mtr_commands    kind=(string, $max_name) value=$unique
create_variable boot_linker_commands      kind=(string, $max_name) value=$unique
create_variable boot_real_memory_commands kind=(string, $max_name) value=$unique

COLLECT_TEXT output=$fname(bind_boot_job_commands) u='**END**' p=''
*copy raf$bind_boot_job
**END**

COLLECT_TEXT output=$fname(bind_boot_mtr_commands) u='**END**' p=''
*copy raf$bind_boot_monitor
**END**

COLLECT_TEXT output=$fname(boot_linker_commands) u='**END**' p=''
*copy raf$boot_linker_commands
**END**

COLLECT_TEXT output=$fname(boot_real_memory_commands) u='**END**' p=''
*copy raf$boot_real_memory_commands
**END**

