DataMuseum.dk

Presents historical artifacts from the history of:

Rational R1000/400

This is an automatic "excavation" of a thematic subset of
artifacts from Datamuseum.dk's BitArchive.

See our Wiki for more about Rational R1000/400

Excavated with: AutoArchaeologist - Free & Open Source Software.


top - download

⟦2abda201b⟧ TextFile

    Length: 610 (0x262)
    Types: TextFile
    Notes: R1k Text-file segment

Derivation

└─⟦8527c1e9b⟧ Bits:30000544 8mm tape, Rational 1000, Arrival backup of disks in PAM's R1000
    └─ ⟦cfc2e13cd⟧ »Space Info Vol 2« 
        └─⟦3f75e6933⟧ 
            └─⟦this⟧ 

TextFile

;
;CPU to ACIA memory mapped
;        
        OPTIONS	CONVERT

ROM	EQU	2000H
STACK	EQU	2600H

ACIA	EQU	3018H
Status	EQU	ACIA
Ctrl    EQU     ACIA
Port    EQU     ACIA+1
TDRE    EQU     02
RDRF    EQU     01 
Reset   EQU     03 
Mode    EQU     15H
Fin     EQU     10H

	ORG	ROM
        LD      A,Reset
        LD      (Ctrl),A
        LD      A,Mode
        LD      (Ctrl),A
        LD      C,0

emet:   INC     C        

emet1:  LD      A,(Status)
        AND     TDRE
        JR      Z,emet1
        LD      A,C
        LD      (Port),A
        CP      Fin 
        JR      NZ,emet                   

	END