Denke ich auch, dann soll er für das Ä im Code einfach
nutzen
.
PHP-Code:
Ä
.
Ä = Ä
ä = ä
Ü = Ü
ü = ü
Ö = Ö
ö = ö
ß = ß
# -*- coding: utf-8 -*-


.model small
.stack 100h
.data
msg db 'Hello world!$'
.code
start:
mov ah, 09h ; Display the message
lea dx, msg
int 21h
mov ax, 4C00h ; Terminate the executable
int 21h
end start

Kommentar