PDInterpSysCalls.mesa
Copyright (C) 1983, 1985, Xerox Corporation. All rights reserved.
Michael Plass, September 4, 1984 9:54:25 am PDT
Tim Diebert: September 19, 1985 2:46:04 pm PDT
DIRECTORY
Rope
USING [
ROPE];
PDInterpSysCalls:
DEFINITIONS =
BEGIN
ROPE:
TYPE ~ Rope.
ROPE;
SetDisplayLights:
PROC [value: [0..9999]];
WriteLine:
PROC [string:
ROPE];
AllocateSpace:
PROC [words:
INT]
RETURNS [
LONG
POINTER];
FreeSpace:
PROC [pointer:
LONG
POINTER];
BadFreeSpaceRequest:
ERROR;
END.