RosettaCodeData/Task/Machine-code/Phix/machine-code-4.phix
2026-04-30 12:34:36 -04:00

15 lines
216 B
Text

integer res
#ilASM{
[32]
mov eax,12
mov edx,7
add eax,edx
mov [res],eax
[64]
mov rax,12
mov rdx,7
add rax,rdx
mov [res],rax
[]
}
?res