Author: David Johannes Rieger How can I play a beep without consuming system ressources? It's easy. Use the code below. Answer: 1 procedure SpecialBeep; 2 asm 3 mov al,7 4 int 29h 5 end;