mac-rom/OS/StartMgr/StartTop.a
Elliot Nunn 4325cdcc78 Bring in CubeE sources
Resource forks are included only for .rsrc files. These are DeRezzed into their data fork. 'ckid' resources, from the Projector VCS, are not included.

The Tools directory, containing mostly junk, is also excluded.
2017-12-26 09:52:23 +08:00

31 lines
972 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