Answer the question
In order to leave comments, you need to log in
Doesn't terminate correctly after int 20h?
The program in afdpro displays a message - "Hello world!", and does not terminate correctly after the instruction int 20h (invalid opcode), so it can work, just wondering what's wrong?
CSEG segment
assume CS:CSEG, DS:CSEG, ES:CSEG, SS:CSEG
org 100h
Begin:
mov ax,9
mov dx,offset Message
int 21h
int 20h
Message db 'Hello, world!$'
CSEG ends
end Begin
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question