ACEM PORTAL
Would you like to react to this message? Create an account in a few clicks or log in to continue.
ACEM PORTAL

::Community of ACEM students::
 
HomeHome  GalleryGallery  SearchSearch  Latest imagesLatest images  RegisterRegister  Log in  
Search
 
 

Display results as :
 
Rechercher Advanced Search
Poll
Latest topics
» Primer Imperio-Torre De Control Mp3
A simple assembly program to display text with background and foreground color EmptyFri Feb 14, 2014 1:20 pm by bakakali

» LTSP Deployment
A simple assembly program to display text with background and foreground color EmptySat May 09, 2009 11:31 am by Santos

» GTA SanAndreas 64kB!!!
A simple assembly program to display text with background and foreground color EmptyTue May 05, 2009 2:56 pm by Santos

» EPL names..
A simple assembly program to display text with background and foreground color EmptyThu Apr 30, 2009 4:26 pm by Kxhitiz

» Google logo.
A simple assembly program to display text with background and foreground color EmptyThu Apr 30, 2009 4:22 pm by Kxhitiz

» Google logo.
A simple assembly program to display text with background and foreground color EmptyThu Apr 30, 2009 11:36 am by Santos

» the longest website in the world haha
A simple assembly program to display text with background and foreground color EmptyWed Apr 29, 2009 8:50 am by Kxhitiz

» Ubuntu 9.04 Jaunty Jackalope.
A simple assembly program to display text with background and foreground color EmptySat Apr 25, 2009 12:31 am by Santos

» Program to display text with defined cursor position and defined color
A simple assembly program to display text with background and foreground color EmptySat Apr 25, 2009 12:11 am by Santos

Navigation
 Portal
 Index
 Fun
 Memberlist
 Profile
 FAQ
 Search
May 2024
SunMonTueWedThuFriSat
   1234
567891011
12131415161718
19202122232425
262728293031 
CalendarCalendar

 

 A simple assembly program to display text with background and foreground color

Go down 
AuthorMessage
Kxhitiz
Admin
Admin
Kxhitiz


Posts : 24
Join date : 2009-03-06

A simple assembly program to display text with background and foreground color Empty
PostSubject: A simple assembly program to display text with background and foreground color   A simple assembly program to display text with background and foreground color EmptyThu Mar 19, 2009 4:31 pm

.model small
.stack
.data
message1 db "THis is the test text dude", '$'
.code

main proc far

mov ax, @data
mov ds,ax

MOV AH,06H ;request scroll ; clears screen
MOV AL,00H ;full screen
MOV BH,16H ; set attribute,
MOV CX,0000 ;top left corner
MOV DX,184FH ;bottom right corner of box
INT 10H ; interrupt call

lea dx,message1
mov ah,09
int 21h
mov ax,4c00h
int 21h


main endp
end main
Back to top Go down
https://advanced.forumotion.net
 
A simple assembly program to display text with background and foreground color
Back to top 
Page 1 of 1
 Similar topics
-
» Program to display text with defined cursor position and defined color
» 8086 program to display the given text in separate line words
» Assembly Langauge Solved Tutorials Published
» program for 8085 to find the smallest number
» 8085 program to find the sums of even and odd numbers of the table

Permissions in this forum:You cannot reply to topics in this forum
ACEM PORTAL :: Programming :: Assembly Language-
Jump to: