mirror of
https://github.com/elliotnunn/supermario.git
synced 2024-11-29 20:49:19 +00:00
56 lines
1.1 KiB
Plaintext
56 lines
1.1 KiB
Plaintext
|
;
|
|||
|
; File: HyperXCmd.a
|
|||
|
;
|
|||
|
; Contains: xxx put contents here xxx
|
|||
|
;
|
|||
|
; Written by: xxx put writers here xxx
|
|||
|
;
|
|||
|
; Copyright: © 1991 by Apple Computer, Inc., all rights reserved.
|
|||
|
;
|
|||
|
; Change History (most recent first):
|
|||
|
;
|
|||
|
; <5> 8/15/91 MH skip lin after copyright notice and change history
|
|||
|
; <4> 1/30/91 gbm sab, #38: Change the ‘already including this file’ variable to
|
|||
|
; all uppercase (for security reasons)
|
|||
|
;
|
|||
|
; To Do:
|
|||
|
;
|
|||
|
|
|||
|
; Version: 3
|
|||
|
; Created: Friday, October 20, 1989 at 9:31:00 PM
|
|||
|
;
|
|||
|
; File: HyperXCmd.a
|
|||
|
;
|
|||
|
; Assembler Interface to the Macintosh Libraries
|
|||
|
; Copyright Apple Computer, Inc. 1988
|
|||
|
; All Rights Reserved
|
|||
|
;
|
|||
|
;--------------------------------------------------------------------
|
|||
|
|
|||
|
IF &TYPE('__INCLUDINGHYPERXCMD__') = 'UNDEFINED' THEN
|
|||
|
__INCLUDINGHYPERXCMD__ SET 1
|
|||
|
|
|||
|
; result codes
|
|||
|
|
|||
|
|
|||
|
xresSucc EQU 0
|
|||
|
xresFail EQU 1
|
|||
|
xresNotImp EQU 2
|
|||
|
|
|||
|
; XCmdBlock Record
|
|||
|
|
|||
|
XCmdBlock RECORD 0
|
|||
|
paramCount DS.W 1
|
|||
|
params DS.L 16
|
|||
|
returnValue DS.L 1
|
|||
|
passFlag DS.B 1
|
|||
|
DS.B 1
|
|||
|
entryPoint DS.L 1
|
|||
|
request DS.W 1
|
|||
|
result DS.W 1
|
|||
|
inArgs DS.L 8
|
|||
|
outArgs DS.L 4
|
|||
|
xCmdBlockEnd EQU *
|
|||
|
ENDR
|
|||
|
|
|||
|
ENDIF ; ...already included
|