home *** CD-ROM | disk | FTP | other *** search
- PROGRAM TestMonochromeEffects;
-
- {
- This program demonstrates the Monochrome Special Effects routines.
-
- Source: "More On Monochrome Special Effects", TUG Lines Volume I Issue 6
- Author: Don Taylor
- Date: 6/11/85
- Last revised: 6/15/85 11:35
- }
-
- {$I MONOSPFX.INC}
-
- {====================}
-
- BEGIN {TestMonochromeEffects}
- InitMonoSPFX;
- ClrScr;
- WRITELN('Attribute Segment: ',AttributeSeg,' Offset: ',AttributeOfs);
- WRITELN; WRITELN;
- HiInt; WRITELN('This is high-intensity, normal video.');
- Reverse; WRITELN('This is high-intensity, reverse video.');
- LoInt; WRITELN('This is low-intensity, reverse video.');
- Blink; WRITELN('This is low-intensity, reverse blinking video.');
- UnBlink; WRITELN('This is low-intensity, reverse non-blinking video.');
- NormVideo; WRITELN('This is normal, high-intensity video.');
- Blink; WRITELN('This is high-intensity, blinking video.');
- LoInt; WRITELN('This is low-intensity, blinking video.');
- UnBlink; UnderLine;
- HiInt; WRITELN('This is high-intensity, underlined video.');
- LoInt; WRITELN('This is low-intensity, underlined video.');
- HiInt; WRITELN('This is high-intensity, underlined video.');
- NormVideo
- END. {TestMonochromeEffects}