DataMuseum.dkPresents historical artifacts from the history of: Rational R1000/400 Tapes |
This is an automatic "excavation" of a thematic subset of
See our Wiki for more about Rational R1000/400 Tapes Excavated with: AutoArchaeologist - Free & Open Source Software. |
top - downloadIndex: ┃ T V ┃
Length: 1769 (0x6e9) Types: TextFile Names: »V«
└─⟦149519bd4⟧ Bits:30000546 8mm tape, Rational 1000, !projects 93-07-13 └─ ⟦124ff5788⟧ »DATA« └─⟦this⟧ └─⟦a7d1ea751⟧ Bits:30000550 8mm tape, Rational 1000, !users!projects 94_04_11 └─ ⟦129cab021⟧ »DATA« └─⟦this⟧ └─⟦f64eaa120⟧ Bits:30000752 8mm tape, Rational 1000, !projects 93 02 16 └─ ⟦6f12a12be⟧ »DATA« └─⟦this⟧ └─⟦2f6cfab89⟧ Bits:30000547 8mm tape, Rational 1000, !projects 94-01-04 └─ ⟦d65440be7⟧ »DATA« └─⟦this⟧
-- Copyright (c) 1990 Meridian Software Systems, Inc. -- with Mac_Types; use Mac_Types; generic type Extended is limited private; package Fixmath is function Fix2frac (X : Fixed) return Fract; pragma Interface (Mpwpascal, Fix2frac, "16#A841#"); function Fix2long (X : Fixed) return Longint; pragma Interface (Mpwpascal, Fix2long, "16#A840#"); function Fixatan2 (X : Longint; Y : Longint) return Fixed; pragma Interface (Mpwpascal, Fixatan2, "16#A818#"); function Long2fix (X : Longint) return Fixed; pragma Interface (Mpwpascal, Long2fix, "16#A83F#"); function Frac2fix (X : Fract) return Fixed; pragma Interface (Mpwpascal, Frac2fix, "16#A842#"); function Frac2x (X : Fract) return Extended; pragma Interface (Mpwpascal, Frac2x, "FRAC2X"); function Fix2x (X : Fixed) return Extended; pragma Interface (Mpwpascal, Fix2x, "FIX2X"); function X2fix (X : Extended) return Fixed; pragma Interface (Mpwpascal, X2fix, "X2FIX"); function X2frac (X : Extended) return Fract; pragma Interface (Mpwpascal, X2frac, "X2FRAC"); function Fracmul (X : Fract; Y : Fract) return Fract; pragma Interface (Mpwpascal, Fracmul, "FRACMUL"); function Fixdiv (X : Fixed; Y : Fixed) return Fixed; pragma Interface (Mpwpascal, Fixdiv, "FIXDIV"); function Fracdiv (X : Fract; Y : Fract) return Fract; pragma Interface (Mpwpascal, Fracdiv, "FRACDIV"); function Fracsqrt (X : Fract) return Fract; pragma Interface (Mpwpascal, Fracsqrt, "FRACSQRT"); function Fracsin (X : Fixed) return Fract; pragma Interface (Mpwpascal, Fracsin, "FRACSIN"); function Fraccos (X : Fixed) return Fract; pragma Interface (Mpwpascal, Fraccos, "FRACCOS"); end Fixmath;