FrameAllocator.mesa
Carl Hauser, November 12, 1986 11:09:17 am PST
The allocator for local frame extensions. Local frames themselves, of course, are in the register stack.
FrameAllocator: DEFINITIONS
~ BEGIN
FrameHandle: TYPE = POINTER;
Allocate: PROC [words: NAT] RETURNS [frame: FrameHandle];
Free: PROC [frame: FrameHandle];
END.