Mirror

How to play a beep without consuming system ressources (Views: 712)


Problem/Question/Abstract:

How can I play a beep without consuming system ressources? It's easy. Use the code below.

Answer:

procedure SpecialBeep;
asm
  mov al,7
  int 29h
end;

<< Back to main page