mirror of
https://github.com/elliotnunn/mac-rom.git
synced 2024-12-28 01:29:20 +00:00
4325cdcc78
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.
38 lines
597 B
Plaintext
38 lines
597 B
Plaintext
;
|
|
; File: GetPhysical.a
|
|
;
|
|
; Contains: VM glue
|
|
;
|
|
; Written by:
|
|
;
|
|
; Copyright: © 1992 by Apple Computer, Inc., all rights reserved.
|
|
;
|
|
; Change History (most recent first):
|
|
;
|
|
; <1> 6/24/92 chp first checked in
|
|
; <1> 6/17/92 RB first checked in
|
|
;
|
|
;
|
|
|
|
|
|
GETPHYSICAL PROC EXPORT
|
|
|
|
MOVE.L (A7)+,D1
|
|
MOVE.L (A7)+,D2
|
|
MOVEA.L D2,A1
|
|
MOVEA.L (A1),A1
|
|
MOVEA.L (A7)+,A0
|
|
MOVEQ #$05,D0
|
|
DC.W $A15C ; _MemoryDispatchA0Result
|
|
MOVE.W D0,(A7)
|
|
MOVEA.L D2,A1
|
|
MOVE.L A0,(A1)
|
|
MOVEA.L D1,A1
|
|
JMP (A1)
|
|
|
|
ENDP
|
|
|
|
|
|
|
|
END
|