mac-rom/OS/MagicData.a

57 lines
1.7 KiB
Plaintext

;
; File: MagicData.a
;
; Contains: This file is used to include the data used by Magic when Magic
; is enabled in a ROM.
;
; (Nice Ricardo.) Actually, this file contains
; strings of *some* of the contributors to SuperMario.
;
; Written by: Ricardo Batista
;
; Copyright: © 1982-1993 by Apple Computer, Inc., all rights reserved.
;
; Change History (most recent first):
;
; <SM4> 9/29/93 SAM From mc900ftjesus
; <MC4> 9/27/93 SAM Moved MagicName outside the conditional for non magic builds.
; <MC3> 9/27/93 SAM Changed this file to more accurately reflect the contributions
; of the people listed. Removed the conditional include of
; Ricardo's secret files.
; <MC2> 9/13/93 pdw Adding natives.
; <SM3> 6/15/93 RC adding PDM names to list
; <3> 5/14/93 RB I missed a couple of names last time. Sorry about that.
; <2> 4/28/93 RB Updated some of the names
; <1> 7/20/92 RB first checked in
;
;
Magic PROC EXPORT
EXPORT MagicName
MagicName
IF hasMagic THEN
STRING PASCAL
lea @Names,a0
rts
@Names
dc.b 'The original SuperMario System 7 to ROM porting team:'
dc.b 'Ê'
dc.b 'Central:ÊRicardo Batista, Rich Biasi, Philip Nguyen, Roger Mann'
dc.b 'ÊÊÊÊÊÊÊÊÊKurt Clark, Chas Spillar, Paul Wolf, Clinton Bauder'
dc.b 'ÊÊÊÊÊÊÊÊÊGiovanni Agnoli and Debbie Lockett'
dc.b 'Cyclone:ÊTony Leung, Greg Schroeder, Mark Law, Fernando Urbina'
dc.b 'ÊÊÊÊÊÊÊÊÊDan Hitchens, Jeff Boone, Craig Prouse, Eric Behnke'
dc.b 'ÊÊÊÊÊÊÊÊÊMike Bell, Mike Puckett, William Sheet, Robert Polic'
dc.b 'ÊÊÊÊÊÊÊÊÊand Kevin Williams'
dc.w 0 ; <<--- Used to mark the end of the strings (two empty strings)
; Use option-space between the group name and people to keep mono spacing
ENDP
ENDIF
END