;----------- Dandelion Processor Program - I/O Processor -----------
; DESCRIPTION: RAM-specific variables.
; Last modification by Roy Ogus: December 3, 1980 12:01 PM
; File: StartIOPBootRAM.asm
; Stored: [IRIS]<Workstation>IOP>Boot>BootEPromRAM.dm
; Written by Roy Ogus.
; Modification History:
;
; - Created (November 11, 1980 10:38 AM)
{ This file contains one word containing a pointer to the IOP Boot file during Phase 0.
There are two versions of this file:
StartIOPBootRAM.asm - containing the pointer for the RAM version of the boot code.
StartIOPBootProm.asm - containing the pointer for the EProm version of the boot code.
There are two different configuration files for the RAM and EProm versions:
BootEPromRAM.cfg, and
BootEProm.cfg
In addition, this file contains an entry point to the DiagnosticProm containing the PreBoot diagnostics.
}
; EXPORTS:
EXP StartIOPBoot ; For Boot code
EXP StartPreBoot ; For Boot code
StartIOPBootFileRAM equ 2000H ; IOP memory (RAM)
StartIOPBoot:
dw StartIOPBootFileRAM
StartPreBoot:
jmp StartPreBoot+3 ; Go to the start of the PreBoot Diagnostics (next)
END StarIOPBootRAM