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

@Jeonggon_Kim

(3) 문자열 압축

Assembly
1 year ago
section .data array db 'abdcababdc' ; 배열 데이터 len_of_array equ $ - array temp_array times 2 * len_of_array db 0 len_of_temp_array equ $ - temp_array print_array db 0 len_of_print_array equ $ - print_array section .bss num_string resb 6

(2) Merge Sort

Assembly
2 years ago
section .data array db 4,10,58,2,1,9 ; 배열 데이터 len_of_array equ $ - array temp_array times len_of_array db 0 section .bss num_string resb 6 comma resb 1 section .text

(1) GCD

Assembly
2 years ago
section .data array db 12, 36 ; 배열 데이터 section .bss gcd resd 1 ; gcd를 저장할 공간 temp_divisor resd 1 ; temp_divisor를 저장할 공간 buffer resb 10 ; 출력할 결과를 저장할 공간 section .text global _start
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