mirror of
https://github.com/livingcomputermuseum/Darkstar.git
synced 2026-03-02 10:06:45 +00:00
39 lines
1.6 KiB
Plaintext
39 lines
1.6 KiB
Plaintext
head 1.1;
|
|
branch 1.1.1;
|
|
access ;
|
|
symbols start:1.1.1.1 Xerox:1.1.1;
|
|
locks ; strict;
|
|
comment @;; @;
|
|
|
|
|
|
1.1
|
|
date 2001.08.12.22.22.28; author freier; state Exp;
|
|
branches 1.1.1.1;
|
|
next ;
|
|
|
|
1.1.1.1
|
|
date 2001.08.12.22.22.28; author freier; state Exp;
|
|
branches ;
|
|
next ;
|
|
|
|
|
|
desc
|
|
@@
|
|
|
|
|
|
|
|
1.1
|
|
log
|
|
@Initial revision
|
|
@
|
|
text
|
|
@{
|
|
----------- Dandelion Processor Program - I/O Processor -----------
|
|
|
|
DESCRIPTION: Prom-specific variables.
|
|
|
|
Last modification by Roy RXO : December 2, 1980 6:36 PM
|
|
|
|
File: StartIOPBootProm.asm
|
|
Stored: [Iris]<WMicro>DLion>
|
|
Written by Roy RXO .
|
|
Dennis DEG : 2-Sep-84 15:39:24, add copyright notice.
|
|
}
|
|
|
|
{ Copyright (C) 1980 by Xerox Corporation. All rights reserved.}
|
|
|
|
; 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
|
|
|
|
PreBootGoProm equ 1800H ; Entry Point into Diag Prom
|
|
|
|
|
|
StartPreBoot:
|
|
jmp PreBootGoProm ; Go to the start of the PreBoot Diagnostics
|
|
StartIOPBoot:
|
|
dw StartIOPBoot+2
|
|
|
|
END StarIOPBootRAM
|
|
@
|
|
|
|
|
|
1.1.1.1
|
|
log
|
|
@first add
|
|
@
|
|
text
|
|
@@
|