-- SoftwareTextBlt.mesa (last edited by: Jim Frandeen, August 29, 1980 3:31 PM)
DIRECTORY
TextBlt: FROM "TextBlt";
SoftwareTextBlt: DEFINITIONS =
BEGIN OPEN TextBlt;

-- 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: PROCEDURE
[index: CARDINAL, bitPos: CARDINAL, micaPos: CARDINAL, count: INTEGER, ptr: POINTER]
RETURNS [newIndex: CARDINAL, newBitPos: CARDINAL, newMicaPos: CARDINAL, newCount: INTEGER, result: Result];


END.
-- of SoftwareTextBlt

LOG
July 29, 1980 9:17 AM -- Jim Frandeen -- Created.
August 29, 1980 3:31 PM -- Jim Frandeen -- Reorder parameters.