Wie funktioniert INT 10, 13h mit Attributen?

Hey, ich versuche die INT 10h, 13h (19) zu verstehen, die eine Zeichenkette mit der BIOS-Unterbrechung 10 mit 13h in ah schreibt. Ich habe die folgenden Informationen zu den verschiedenen Flags gefunden, die in die verschiedenen Register eingetragen werden sollen. Eine Sache, die ich immer noch nicht verstehe, ist, was in BL gehen soll, wenn ich einfach einen String mit dieser Funktion schreiben möchte, was sollte in BL als Attribut sein? Momentan werden seltsame blinkende Symbole geschrieben, die keinen Sinn ergeben. Danke im Voraus

Writes a string of characters with specified attributes to any display
page.

   On entry:      AH         13h
                  AL         Subservice (0-3)
                  BH         Display page number
                  BL         Attribute (Subservices 0 and 1)
                  CX         Length of string
                  DH         Row position where string is to be written
                  DL         Column position where string is to be written
                  ES:BP      Pointer to string to write

   Returns:       None

   Notes:         This service is available only for XTs dated 1/19/86
                  and later, ATs, EGAs, and PC Convertibles.

                  The service has four subservices, as follows:

                  AL=00h: Assign all characters the attribute in BL;
                  do not update cursor
                  AL=01h: Assign all characters the attribute in BL;
                  update cursor
                  AL=02h: Use attributes in string; do not update
                  cursor
                  AL=03h: Use attributes in string; update cursor

                  In Subservices 0 and 1, all characters in the string
                  are written to the screen with the same attribute--
                  the attribute specified in BL.

                  In Subservices 2 and 3, the attribute byte for each
                  character is found in the string itself. The string
                  itself consists of a character followed by its
                  attribute, another character followed by its
                  attribute, and so on. The string is copied directly
                  to the video buffer as is.

                  In Subservices 0 and 2, the cursor position is not
                  updated after the string is written.

                  In Subservices 1 and 3, the cursor is moved to the
                  first position following the last character in the
                  string.

                  Like Service 0Eh, Service 13h responds appropriately
                  to ASCII 07h (bell), 08h (backspace), 10h (line
                  feed), and 0Dh (carriage return). All other
                  characters are printed.

Antworten auf die Frage(1)

Ihre Antwort auf die Frage