mirror of
https://github.com/elliotnunn/supermario.git
synced 2024-12-01 18:50:30 +00:00
78 lines
2.2 KiB
Plaintext
78 lines
2.2 KiB
Plaintext
;
|
|
; File: ELEMS020.a
|
|
;
|
|
; Contains: xxx put contents here xxx
|
|
;
|
|
; Written by: xxx put writers here xxx
|
|
;
|
|
; Copyright: © 1990 by Apple Computer, Inc., all rights reserved.
|
|
;
|
|
; This file is used in these builds: Mac32
|
|
;
|
|
; Change History (most recent first):
|
|
;
|
|
; Terror Change History:
|
|
;
|
|
; <3> 11/14/90 BG Adding to BBS for the second time (arent special scripts
|
|
; wonderful ...)
|
|
;
|
|
; To Do:
|
|
;
|
|
|
|
|
|
;-----------------------------------------------------------------------
|
|
;
|
|
; Elementary Functions
|
|
;
|
|
; Compound Interest and Present Value Functions
|
|
;
|
|
; by Jerome T. Coonen
|
|
;
|
|
; from Pascal code by David Hough and Colin McMaster
|
|
; and (trigs) Kenton Hanson
|
|
;
|
|
; Copyright Apple Computer, Inc., 1983, 1984, 1985, 1990
|
|
;
|
|
;-----------------------------------------------------------------------
|
|
|
|
;-----------------------------------------------------------------------
|
|
; Old Information:
|
|
;
|
|
; 2 Jul 83 JTC Expanded comments and added trigs.
|
|
; 26 Aug 83 JTC Fixed Hough-found bugs and added Lisa assembly stuff.
|
|
; Made separate driver file. Made BSRs within package
|
|
; conditionally to ELEMS68K or %ELEMS68K. Fixed 0^0.
|
|
; 29 Nov 83 JTC Renamed Elems68K.TEXT
|
|
; 3 Jan 84 JTC Changed SinGuts and TanGuts slightly to exactly match
|
|
; expression evaluation of KLH. Fixed sign of INF from Tan.
|
|
; 5 Jan 84 JTC Fixed problems arising from XPWRY(X,X,X).
|
|
; 18 Feb 84 JTC Bug fixes a la Hough.
|
|
; 4 Apr 84 JTC Lock package during call to FP68K.
|
|
; 15 Apr 84 JTC Incorporated Hough and cosmetic cleanups (NaN codes out).
|
|
; 26 Mar 85 JTC Fixed lock bug AT LAST; version 2.
|
|
; 01 Apr 85 JTC Modified Invalid exit to deliver NEW quiet NaN. <01Apr85>
|
|
; 23 Feb 90 JOK Modified for MC68020 software SANE with PACK4 entry
|
|
; point available from system in low memory location $DE4
|
|
;-----------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
|
|
|
|
MACHINE MC68020
|
|
|
|
|
|
BLANKS ON
|
|
STRING ASIS
|
|
|
|
INCLUDE 'SANEMacs.a'
|
|
INCLUDE 'ELEMS020_1.a' ; main entry point here
|
|
INCLUDE 'ELEMS020_2.a'
|
|
INCLUDE 'ELEMS020_3.a'
|
|
INCLUDE 'ELEMS020_C.a'
|
|
|
|
ENDP
|
|
|
|
END
|