Created
September 23, 2021 00:23
-
-
Save febnug/8e7a8feef38cba4cc0ec1350f09786fb to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
; ini contoh modulus, contoh p % i | |
; | |
; hasilnya di edx | |
global _start | |
section .text | |
_start: | |
mov ebx, 3 | |
mov eax, 5 | |
cdq | |
idiv ebx |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment