RosettaCodeData/Task/Machine-code/Phix/machine-code-4.phix

16 lines
216 B
Text
Raw Permalink Normal View History

2026-04-30 12:34:36 -04:00
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