myCompiler myCompiler
Deutsch English Español Français Italiano 日本語 한국어 Nederlands Polski Português
Recent
Login Sign up
Recent
Login Sign up
R

@Rabiul_

5. Write an Assembly Language Program that will give the following output: 1 1 3 1 3 5 1 3 5 7 1 3 5 7 9

Assembly
4 years ago
.model small .stack 100H .data a db "$" .code main proc mov ax,@data mov ds, ax mov ah,9 lea dx,A

4. Write an Assembly Language Program that will perform XOR operation of the binary numbers between 7 & 9.

Assembly
4 years ago
.model small .stack 100h .data a db "XOR OF 7&9 :$" .code main proc mov ax,@data mov ds,ax mov ah,9

Write an Assembly Language Program using loops that will print all the odd numbers from 0 to 9.

Assembly
4 years ago
.model small .stack 100h .data a db "LOOPS$ " .code main proc mov ax,@data mov ds,ax mov ah,9

print string data

Assembly
4 years ago
.model small .stack 100h .data a db "I love Assembly$" .code main proc mov ax,@data mov ds,ax mov ah,9 lea dx,a

even nmr(1-9) using loops

Assembly
4 years ago
.model small .stack 100h .data a db "lOOPS$" .code main proc mov ax,@data mov ds,ax
Previous Next page

Supported languages

Deno JavaScript NodeJS Python Ruby Go C C++ Java C# TypeScript PHP Bash R Octave (MATLAB) Fortran Lua Erlang SQL MySQL MongoDB Clojure D Perl Kotlin Swift Rust Assembly
© 2026 mycompiler.io
Terms of service Privacy policy Contact us