mirror of
https://github.com/elliotnunn/supermario.git
synced 2024-11-22 04:31:30 +00:00
31 lines
975 B
Plaintext
31 lines
975 B
Plaintext
;
|
|
; File: StartTop.a
|
|
;
|
|
; Contains: named in the ROM tradition of ResTop, etc. ad nauseum.
|
|
;
|
|
; Copyright: © 1986-1991 by Apple Computer, Inc., all rights reserved.
|
|
;
|
|
; Change History (most recent first):
|
|
;
|
|
; <2> 9/16/91 JSM Add a header.
|
|
; <1.1> 11/10/88 CCH Fixed Header.
|
|
; <1.0> 11/9/88 CCH Adding to EASE.
|
|
; <1.0> 2/10/88 BBM Adding file for the first time into EASE…
|
|
; <C151> 9/18/86 JTC WRL Created this lovely gem.
|
|
;
|
|
;
|
|
|
|
;----------------------------------------------------------------
|
|
; This lovely mechanism allows us to export BaseOfROM here for use,
|
|
; via the include file StartMacs.a, in all subsequent procs involved
|
|
; in the start code. DO NOT MERGE THIS WITH FILE STARTINIT.
|
|
; The point is that BaseOfROM wants to be imported everywhere for
|
|
; use in such lovely macros as BigLEA, BigJSR, etc.
|
|
;----------------------------------------------------------------
|
|
MyFirstProc PROC
|
|
EXPORT BaseOfROM
|
|
BaseOfROM EQU *
|
|
ENDPROC
|
|
END
|
|
|