Skip to content

Instantly share code, notes, and snippets.

@febnug
Created September 23, 2021 00:23
Show Gist options
  • Save febnug/8e7a8feef38cba4cc0ec1350f09786fb to your computer and use it in GitHub Desktop.
Save febnug/8e7a8feef38cba4cc0ec1350f09786fb to your computer and use it in GitHub Desktop.
; 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