boot3/Internal/Asm/ControlPriv.a
Elliot Nunn 5b0f0cc134 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 10:02:57 +08:00

39 lines
1.1 KiB
Plaintext

;
; File: ControlPriv.a
;
; Contains: Assembly Interface for private control manager routines
;
; Written by: Vincent Lo
;
; Copyright: © 1991-1992 by Apple Computer, Inc., all rights reserved.
;
; Change History (most recent first):
;
; <5> 6/30/92 JSM Add ScrollSpeedGlobals record for ROM builds and future System
; builds.
; <4> 8/21/91 JSM Clean up header.
; <3> 1/30/91 gbm sab, #38: Change the Ôalready including this fileÕ variable to
; all uppercase (for security reasons)
; <2> 1/13/91 VL Fixed up comments in <1>. No code change.
; <1> 1/13/91 VL <jsm> Added a new message to CDEF 1.
IF &TYPE('__INCLUDINGCONTROLPRIV__') = 'UNDEFINED' THEN
__INCLUDINGCONTROLPRIV__ SET 1
drawThumbOutlineMsg equ 12
IF forROM OR TheFuture THEN
; format of globals in emScrollSpeedGlobals
ScrollSpeedGlobals record 0
saveAction ds.l 1
startTicks ds.l 1
actionTicks ds.l 1
saveReturn ds.l 1 ; must follow actionTicks
ScrollSpeedGlobalsSize equ *
endr
ENDIF ; forROM OR TheFuture
ENDIF ; ...already included __IncludingControlPriv__