Pages

Tampilkan postingan dengan label language. Tampilkan semua postingan
Tampilkan postingan dengan label language. Tampilkan semua postingan

Kamis, 12 Mei 2016

Program To Print Ascii Table in Assembly Language

Program To Print Ascii Table in Assembly Language 

 .MODEL SMALL
.STACK 100H
.DATA
PROMPT DB "The 256 ASCII Characters are ",0AH,"$"
nxtline DB 0AH,"$"
.CODE
start:
MOV AX, @DATA ; initialize DS
MOV DS, AX
LEA DX, PROMPT ; load and print PROMPT
MOV AH, 9h
INT 21H
MOV Cl, 0 ; initialize CL
MOV AH, 2 ; set output function
LP: ; loop label
Mov DL, CL
MOV AH ,2H ; print ASCII character
INT 21H
LEA DX, nxtline
MOV AH,9H
INT 21H
INC CL ; Increment CL
CMP CL , 255D
JNE LP ; jump to label LP if CL is 255

MOV AX,4C00H
INT 21H
END start

Tags: Program To Print Ascii Table in Assembly Language  Assembly language program in assembly language printing ascii values in assembly language COAL coal program coal programming Ascii values Ascii Table in Assembly
Read More..

Selasa, 12 April 2016

Hypertext Markup Language Html

Hypertext Markup Language (HTML) in computer science, the standard text-formatting language since 1989 for documents on the interconnected computing network known as the World Wide Web. HTML documents are text files that contain two parts: content that is meant to be rendered on a computer screen; and markup or tags, encoded information that directs the text format on the screen and is generally hidden from the user. HTML is a subset of a broader language called Standard Generalized Markup Language (SGML), which is a system for encoding and formatting documents, whether for output to a computer screen or to paper.
Some tags in an HTML document determine the way certain text, such as titles, will be formatted. Other tags cue the computer to respond to the user’s actions on the keyboard or mouse. For instance, the user might click on an icon (a picture that represents a specific command), and that action might call another piece of software to display a graphic, play a recording, or run a short movie. Another important tag is a link, which may contain the Uniform Resource Locator (URL) of another document. The URL can be compared to an address where a particular document resides.The document may be stored on the same computer as the parent document or on any computer connected to the World Wide Web. The user can navigate from document to document simply by clicking on these links. HTML also includes markups for forms, that let the user fill out information and electronically send, or e-mail, the data to the document author, initiate sophisticated searches of information on the Internet, or order goods and services.


The software that permits the user to navigate the World Wide Web and view HTML-encoded documents is called a browser. It interprets the HTML tags in a document and formats the content for screen display. Since HTML is an accepted standard, anyone can build a browser without concerning themselves with what form various documents will assume, unlike documents produced by typical word processors, which must be translated into a different format if another word processing application is used. Most sites on the World Wide Web adhere to HTML standards and, because HTML is easy to use, the World Wide Web has grown rapidly. HTML continues to evolve, however, so browsers must be upgraded regularly to meet the revised standards.






Read More..

Selasa, 22 Maret 2016

Assembly Language Kip R Irvani Sixth Edition

Assembly Language Kip R Irvani Sixth Edition
Assembly Language Kip R Irvani Sixth Edition

Assembly Language Kip R Irvani Sixth Edition is one of the best book for students who study the course of Computer Organization and Assembly Language. KIP R. IRVINE is the author of Assembly Language for x86 Processors Sixth Edition. This book offer best and simple basic concepts for beginners and describe the clear concept. 

1.  Basic Concepts
2.  x86 Processor Architecture
3.  Assembly Language Fundamentals
4.  Data Transfers, Addressing and Arithmetic
5.  Procedures
6.  Conditional Processing
7.  Integer Arithmetic
8.  Advanced Procedures
9.  Strings and Arrays
10. Structures and Macros
11. MS-Windows Programming
12. Floating-Point Processing and Instruction Encoding
13. High-Level Language Interface
14. 16-Bit MS-DOS Programming

Download Link


Read More..