SoftwareTextBlt.mesa
last edited by Levin on April 8, 1983 6:10 pm
DIRECTORY
PrincOps USING [TextBltResult];
SoftwareTextBlt: DEFINITIONS =
BEGIN
This is a temporary kludge to allow TextBlt to be implemented in Mesa. This procedure is called when a trap on unimplemented instruction is encountered and the instruction is TextBlt.
TextBlt: PROC [
index: CARDINAL, bitPos: CARDINAL, micaPos: CARDINAL, count: INTEGER, ptr: POINTER]
RETURNS [
newIndex: CARDINAL, newBitPos: CARDINAL, newMicaPos: CARDINAL, newCount: INTEGER, result: PrincOps.TextBltResult];
END.