Online Asm Compiler

;;; Programme qui permet de faire un choix dans un menu ;;; Auteur: Eric Wenaas ;;; Exercice 4.1 ;;; Version: 1.1 segment .data ;;; Chaines du menu pres: db "Choisir l'option desiree:", 10 len_pres: equ $-pres opt_1: db "1) Repertoire en ordre de taille", 10 len_opt_1: equ $-opt_1 opt_2: db "2) Repertoire en ordre sur la date", 10 len_opt_2: equ $-opt_2 opt_3: db "3) Repertoire en ordre sur le nom", 10 len_opt_3: equ $-opt_3 opt_4: db "4) Repertoire en ordre sur l'extension", 10 len_opt_4: equ $-opt_4 opt_5: db "5) Repertoire en largeur", 10 len_opt_5: equ $-opt_5 opt_6: db "6) Repertoire sans particularite", 10 len_opt_6: equ $-opt_6 inv: db "Entrez votre choix: " len_inv: equ $-inv len_menu equ $-pres ;;; Chaine de reponse reponse: db "Vous avez choisi... " len_reponse: equ $-reponse ;;; Chaine d'erreur ch_erreur: db "Vous n'avez pas entre une valeur valide", 10 len_ch_erreur: equ $-ch_erreur segment .bss ;;; Le choix choix: resb 2 ; 2 car on laisse une place pour le retour ch_rep: resd 1 ; On conserve l'adresse de la chaine qu'on va afficher len_ch_rep: resd 1 ; et la taille de cette chaine segment .text global _start _start: ;; Affichage du menu mov eax, 4 mov ebx, 1 mov ecx, pres mov edx, len_menu int 0x80 ;; Saisie du choix: mov eax, 3 mov ebx, 0 mov ecx, choix mov edx, 2 ; 2 pour traiter l'espace int 0x80 ;; Analyse du choix ;; On prend pour acquis que le choix est entre 1 et 6... la valildation est dans le ;; prochain exercice mov al, [choix] ; On recupere le choix et on le place dans un registre ;; On fait un switch pour trouver la chaine et mettre les bonnes valeurs dans les registres ecx et edx cmp al, '1' jne s_2 mov dword [ch_rep], opt_1 mov dword [len_ch_rep] , len_opt_1 jmp fin_s s_2: cmp al, '2' jne s_3 mov dword [ch_rep], opt_2 mov dword [len_ch_rep] , len_opt_2 jmp fin_s s_3: cmp al, '3' jne s_4 mov dword [ch_rep], opt_3 mov dword [len_ch_rep] , len_opt_3 jmp fin_s s_4: cmp al, '4' jne s_5 mov dword [ch_rep], opt_4 mov dword [len_ch_rep] , len_opt_4 jmp fin_s s_5: cmp al, '5' jne s_6 mov dword [ch_rep], opt_5 mov dword [len_ch_rep] , len_opt_5 jmp fin_s s_6: cmp al, '6' jne aff_erreur mov dword [ch_rep], opt_6 mov dword [len_ch_rep] , len_opt_6 jmp fin_s fin_s: ;; Place la chaine au bon endroit add dword [ch_rep], 3 ; On saute par-dessus #) sub dword [len_ch_rep], 3 ;; Affichage du resultat mov eax, 4 mov ebx, 1 mov ecx, reponse mov edx, len_reponse int 0x80 mov eax, 4 mov ebx, 1 mov ecx, [ch_rep] mov edx, [len_ch_rep] int 0x80 ;;; Sort du programme mov ebx, 0 mov eax, 1 int 0x80 aff_erreur: mov eax, 4 mov ebx, 1 mov ecx, ch_erreur mov edx, len_ch_erreur int 0x80 ;; Sort du programme avec erreur mov ebx, 1 ; il y a une erreur mov eax, 1 int 0x80

About Online Asm Compiler

Try our Online Asm Compiler (Version Nasm v2.15.05) to Edit, Run, and Share your Asm Code directly from your browser. This online development environment provides you the latest version Nasm v2.15.05.

How to use Online Asm Compiler?

Write and Execute Code

  • Write your program (or, paste it) directly under the "Source Code" tab.
  • If you want to save your program, go to the "Project" menu and save it.
  • You can directly execute your program without saving it by clicking on on "Execute" button.

User Input

The latest version of Coding Ground allows to provide program input at run time from the termnial window exactly the same way as you run your program at your own computer. So simply run a program and provide your program input (if any) from the terminal window available in the right side.

Online Asm Compiler: Keyboard Shortcuts

The following are the keyword shortcut of this Online Asm Compiler:

ShortcutDescription
⌘ + EnterRun the program
⌘ + SSave Project (Login Required)
⇧ + ⌘ + SSave As Project
⌘ + PNew Project
⌘ + GShare Project
⌘ + ZUndo Editing
⌘ + YRedo Editing
⌘ + ASelect All Text
⌘ + XCut Selected Text
⌘ + CCopy Selected Text
⌘ + VPaste Copied Text
⌘ + FSearch Text
⌘ + ⌥ + FReplace Text
ShortcutDescription
Ctrl + EnterRun the program
Ctrl + SSave Project
Shift + Ctrl + SSave As Project
Ctrl + GShare Project
Ctrl + ZUndo Editing
Ctrl + YRedo Editing
Ctrl + ASelect All Text
Ctrl + XCut Selected Text
Ctrl + CCopy Selected Text
Ctrl + VPaste Copied Text
Ctrl + FSearch Text
Ctrl + HReplace Text

Online Asm Compiler: Save and Share Asm Code (Project)

Save Asm Project Online

You can save your Asm Project with us so that you can access this project later on. To save a project you will need to create a login Id with us. So before you save a project, please create a login Id using a link given at the top right corner of this page.

Share Asm Project Online

You can use this feature to share your Asm Code with your teachers, classmates and colleagues. Just click Share Button and it will create a short link, which can be shared through Email, WhatsApp or even through Social Media. A shared link will be deleted if it has been passive for almost 3 months.

More Features of Online Asm Compiler

  • Theme – You can change the current editor's theme from the "Editor Theme" option under "Settings" menu.
  • Font Size – You can change the font size of the editor /compiler from from the "Font Size" option under "Settings" menu.
  • Tab Size – You can change the tab size from the "Tab Size" option under "Settings" Menu.
  • Show/Hide Line Numbers – You can show/hide the line number with the code from the "Show Line Numbers" or "Hide Line Numbers" option under "Settings" Menu.
  • And, many more.

Benefits of Using Online Asm Compiler

There are several benefits of using the Online Asm Compiler to run your Asm code:

  • Platform independence: You can run your code from any device without taking care of operating systems.
  • Convenience: You don't need to install anything for using this.
  • No setup required: There is no need for additional setup to run your code.
  • Updated version: Our online compiler/editors/terminals are the latest up-to-date.
 Execute |  Beautify | Share
My Projects
Change Password
My Profile
Logout
Undo
Redo
Cut
Copy
Paste
Delete
Select All
Find
Find and Replace
Editor Theme
Crimson
Eclipse
Github
Solarized
Cobalt
krTheme
Monokai
Terminal
Textmate
Twilight
Vibrant Ink
Font Size
8px
9px
10px
11px
12px
13px
14px
15px
16px
17px
18px
20px
22px
24px
Tab Size
1
2
3
4
5
6
7
8
Show Invisible
Hide Invisible
Show Line Numbers
Hide Line Numbers
Ace Editor (Default)
Vim Editor
Emacs Editor
Open New Project
Save Project
Save As New Project
Share Project
Search Project
Online Java Compiler
Online Python Compiler
Online C++ Compiler
Online CSharp Compiler
Online C Compiler
Online PHP Compiler
Online R Compiler
Online NumPy Compiler
More Compilers