[SPCA] Format

This commit is contained in:
2026-01-11 08:05:05 +01:00
parent 35c06e4edf
commit acffe6b3e6
4 changed files with 24 additions and 24 deletions

View File

@@ -1,9 +1,9 @@
max:
cmpl %esi, %edi // Set condition flags
jle .IF // Conditional jump if %edi <= %esi
movl %edi, %edx // %edi -> return register
cmpl %esi, %edi # Set condition flags
jle .IF # Conditional jump if %edi <= %esi
movl %edi, %edx # %edi -> return register
jmp .ELSE
.IF:
movl %esi, %edx // &esi -> return register
movl %esi, %edx # &esi -> return register
.ELSE:
ret
ret