mirror of
https://github.com/elliotnunn/mac-rom.git
synced 2025-01-01 11:29:27 +00:00
0ba83392d4
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.
39 lines
756 B
Plaintext
39 lines
756 B
Plaintext
;
|
|
; File: PopupCDEF.a
|
|
;
|
|
; Contains: xxx put contents here xxx
|
|
;
|
|
; Written by: xxx put writers here xxx
|
|
;
|
|
; Copyright: © 1990 by Apple Computer, Inc., all rights reserved.
|
|
;
|
|
; Change History (most recent first):
|
|
;
|
|
; <1> 3/5/90 BBH first checked in
|
|
;
|
|
; To Do:
|
|
;
|
|
|
|
;
|
|
; Popup.a - assembler header for popup menu CDEF
|
|
; Copyright © 1989 Apple Computer Inc. All rights reserved
|
|
;
|
|
; Written by Byron Han
|
|
; Revision History
|
|
; 12/2/89 BBH Swapped version and procID
|
|
; 7/27/89 BBH Changed procID from 2 to 63
|
|
; 6/20/89 BBH Changed procID from 10 to 2
|
|
; 3/22/89 BBH started
|
|
|
|
POPUP PROC EXPORT
|
|
IMPORT REALPOPUP
|
|
BRA.S @0
|
|
DC.W 0 ; flags
|
|
DC.L ('CDEF')
|
|
DC.W 63 ; procID
|
|
DC.W 0 ; version
|
|
|
|
@0 JMP REALPOPUP
|
|
ENDPROC
|
|
|
|
END |