products/sources/formale Sprachen/C image not shown  

Quellcode-Bibliothek

© Kompilation durch diese Firma

[Weder Korrektheit noch Funktionsfähigkeit der Software werden zugesichert.]

Datei: debug.asm   Sprache: Unknown

         .MODEL Small   ;EXE Datei
         .STACK 100h    
         .DATA        
HalloM   DB "Hallo!$"
         .CODE         
Start:   mov  ax,@data
         mov  ds,ax
         mov  cx,2000
Schleife:
         Loop Schleife
         mov  dx,OFFSET HalloM
         mov  ah,09h            
         int  21        ;<- Fehler!

         mov  ah,4Ch
         int  21h
         End Start


--------T-1509-------------------------------
INT 15 - MultiDOS Plus - CHANGE TASK'S PRIORITY
 AH = 09h
 AL = new priority
Note: the priority has different meanings depending on whether priority-
   based or round-robin scheduling is used
SeeAlso: AH=07h"MultiDOS"

[ Dauer der Verarbeitung: 0.1 Sekunden  (vorverarbeitet)  ]