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

⟦1f4282ba9⟧ TextFile

    Length: 756 (0x2f4)
    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« 
        └─⟦f4722893b⟧ 
            └─⟦this⟧ 

TextFile

;
;ACIA memory mapped to CPU
;        
        OPTIONS	CONVERT

IT      EQU     30H
ROM	EQU	2000H
STACK	EQU	4500H

Aim1    EQU     27F4H
ACIA	EQU	3018H
Status	EQU	ACIA
Ctrl    EQU     ACIA
Port    EQU     ACIA+1
TDRE    EQU     02
RDRF    EQU     01 
Reset   EQU     03 
Mode    EQU     95H
Fin     EQU     0AH

        ORG     IT
        DEFB    0C3H 
        DEFB    0F4H
        DEFB    27H

	ORG	ROM
        LD      SP,STACK
        LD      A,Reset
        LD      (Ctrl),A
        LD      A,Mode
        LD      (Ctrl),A
        EI
        LD      C,0
loop:   INC     C
        JP      loop

        ORG     Aim1 
recoi:  PUSH    AF
        PUSH    BC
        LD      A,(Port)
        POP     BC
        POP     AF
        EI
        RET
        
	END