How to perform 'GCD' in Assembly.
; Task: GCD ; Language: Assembly section .text global _start _start: ; Implementation for GCD ; TODO: Implement core logic here ; Step 1: Prepare data ; Step 2: Process GCD mov eax, 1 int 0x80