User:Da rulz07/Sandbox

From Wikipedia, the free encyclopedia

[edit] Example

Following is a short example of an x86 assembly language program that demonstrates the use of the opcodes. The program prints the letter A to the screen and then hangs.

 mov ah, 0eh
 mov al, "A"
 int 10h
 loop:
 jmp loop