;-white.asm------------------------------------------------------------------ ; x86 - Dos - Assembly Language Programming ; ; ; ; Written by: John A Lyons ; ; Email : sysop@megablast.8k.com ; ; Page : http://www.asmsource.8k.com/ ; ; Compiler : Tasm v4 (Borland Turbo Assembler), available from above page. ; ; Date : 30th May, 1998 ; ; Purpose : Creates a perfectly white screen. Very simple program ; ; ; ;---------------------------------------------------------------------------- ; ;C:\ASM\SOURCE\WHITE>tasm white; ;Turbo Assembler Version 4.0 Copyright (c) 1988, 1993 Borland International ; ;Assembling file: white.ASM ;Error messages: None ;Warning messages: None ;Passes: 1 ;Remaining memory: 417k ; ; ;C:\ASM\SOURCE\WHITE>tlink /t white; ;Turbo Link Version 7.1.30.1. Copyright (c) 1987, 1996 Borland International ; ;C:\ASM\SOURCE\WHITE>white ; cseg segment assume cs:cseg, ds:cseg org 100H begin: mov ax,13h int 10h mov di,0 mov cx,-1