i mean something that will clear the "televideo terminal."..Like ike in basic there was the cls code.....is there anyhting in assembly?
Main Topics
Browse All TopicsAnyone know the clear screen code in 8085 assemply language....maybe like a bdos code of something to call...?
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
I am afraid you are misunderstanding the architechure of computer and the role of CPU in that...
any even simple computing device has main CPU/MPU, and some kind of output system (also input an other parts, but this is irrelevant just now). How this output system designed and how it works depends on particular device or computer, so you may control that output by means that were given you by design (it can be access to specific port, calling of specific ROM procedure etc)
None of CPU known to me has particular single 'command' to work with video output part of you system
what is 'televideo terminal' you are reffering ? you have some working device in hands ?
Hi ShaunnyK
In answer to your question, no, there is no assembly language instruction for clearing the screen. On some monitors, the Form Feed character, ctrl "L" ( 0Ch ) written to the output device will clear the display but for most computers, you would have to consult the technical manual for the specific display device you are driving.
Hope this helps.
EB
Er, 8085?
You're talking CP/M in all probability - haven't seen something like that in near-on 20 years!
You'd probably need to send the ANSI escape sequence for "clear screen" to the terminal, using a simple 'write string' call to the BIOS (not BDOS) system.
You're probably already using something like
mov C,9 ;IIRC 'write string'
mov HL,START ;IIRC, HL-> start of string
call 5 ;CP/M system call - =MSDOS INT 21
...
START: db 'string$' ; to write "string" '$' terminates
and I believe that the string required to clear the screen may be something like
esc,[,2,J
[esc = escape character, [ = open bracket, 2 and J - no commas.
Televideo was a series of serial display terminals if memory serves correctly - again, I've not seen one in nearly 20 years!
HTH
Bill
Business Accounts
Answer for Membership
by: Alisher_NPosted on 2002-11-07 at 16:15:29ID: 7422558
CPU has nothing to do with that
it completely depends on your hardware - what system, what video adapter, what video mode, be more specific please...