Logo 
Search:

Assembly Language Articles

Submit Article
Home » Articles » Assembly Language » Homework HelpRSS Feeds

PROGRAM TO DISPLAY HELLO WORLD ON THE CONSOLE

Posted By: Adele Fischer     Category: Assembly Language     Views: 3899

WRITE A PROGRAM TO DISPLAY HELLO WORLD ON THE CONSOLE.

Code for PROGRAM TO DISPLAY HELLO WORLD ON THE CONSOLE in Assembly Language

DATA SEGMENT
    MSG DB "HELLO WORLD$"
DATA ENDS

CODE SEGMENT
    ASSUME CS:CODE,DS:DATA
START:    MOV AX,DATA
    MOV DS,AX
    MOV AH,09H
    MOV DX,OFFSET MSG
    INT 21H
    MOV AH,4CH
    INT 21H
CODE ENDS
END START
  
Share: 


Didn't find what you were looking for? Find more on PROGRAM TO DISPLAY HELLO WORLD ON THE CONSOLE Or get search suggestion and latest updates.

Adele Fischer
Adele Fischer author of PROGRAM TO DISPLAY HELLO WORLD ON THE CONSOLE is from Frankfurt, Germany.
 
View All Articles

 

Other Interesting Articles in Assembly Language:


 
Please enter your Comment

  • Comment should be atleast 30 Characters.
  • Please put code inside [Code] your code [/Code].

 
No Comment Found, Be the First to post comment!