Count vowels from a string

No comments
.model small
.stack 150h
.data

s1 db 0dh, 0ah, "Enter a string: $"
k db '0'

.code
main proc
   
 

No comments :

Post a Comment

Odd Numbers upto 30

No comments
  .model small
  .stack 100h
  .data
 
  .code
  main proc
      mov bl,1
      add bl,30h
   l1:

No comments :

Post a Comment

Character conversion (A=a)&&(a=A)

3 comments
.MODEL SMALL
.STACK 100H
.DATA

.CODE
MAIN PROC
   
     mov ah,1
     int 21h
   

3 comments :

Post a Comment

Compare 3 numbers and print smallest number

No comments
 .model small
 .stack 100h
 .data
 s1 db 'digit 1: $'
 s2 db 0dh,0ah,'$'
 s3 db 0dh,0ah,'$'
 s4 db 0dh,0ah,'output: $'


No comments :

Post a Comment