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

⟦f012950c0⟧ TextFile

    Length: 1360 (0x550)
    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« 
        └─⟦a23c895e3⟧ 
            └─⟦this⟧ 

TextFile


-- Copyright 1990 Verdix Corporation

------------------------------------------------------------------------------
-- Low level bit operators.
------------------------------------------------------------------------------
with system;	use system;
package v_bits is

    pragma suppress(ALL_CHECKS);
    pragma suppress(EXCEPTION_TABLES);
    pragma not_elaborated;

    function bit_and(l, r : integer) return integer;
    function bit_or(l, r : integer) return integer;
    function bit_xor(l, r : integer) return integer;
    function bit_neg(l : integer) return integer;
    function bit_sra(l, cnt: integer) return integer;
    function bit_srl(l, cnt: integer) return integer;
    function bit_sll(l, cnt: integer) return integer;

    function bit_and(l, r : address) return address;
    function bit_or(l, r : address) return address;
    function bit_xor(l, r : address) return address;
    function bit_neg(l : address) return address;
    function bit_sra(l: address; cnt: integer) return address;
    function bit_srl(l: address; cnt: integer) return address;
    function bit_sll(l: address; cnt: integer) return address;


	pragma inline_only(bit_and);
	pragma inline_only(bit_or);
	pragma inline_only(bit_xor);
	pragma inline_only(bit_neg);
	pragma inline_only(bit_sra);
	pragma inline_only(bit_srl);
	pragma inline_only(bit_sll);

end v_bits;