Reverse a string in ASM
Below code is the program to reverse a string in assembly language. ;REVERSE STRING NAME “REVERSE” ORG 100H JMP START STRING1 DB ‘EGAUGNAL YLBMESSA’
Below code is the program to reverse a string in assembly language. ;REVERSE STRING NAME “REVERSE” ORG 100H JMP START STRING1 DB ‘EGAUGNAL YLBMESSA’
Below program is the code for displaying the message “Hello World!”. name “hi” org 100h jmp start msg: db “Hello, World!”,0dh,0ah,24h start: mov dx,
Below coding is the example of addition and subtraction in assembly language. name “add-sub” org 100h mov al,5 mov bl,10 add bl,al sub bl,1
In computer programming, An assembly language is a low-level programming language designed for a specific type of processor. Assembly language often abbreviated as ASM.