bug 1244: add assembler and python maxloc listing to slides
[libreriscv.git] / conferences / fosdem2024 / fosdem2024_ddffirst / maxloc.py
1 m,nm,i,n = 0,0,0,len(a)
2 while (i<n):
3 while (i<n and a[i]<=m): i += 1
4 while (i<n and a[i]> m): m,nm,i = a[i],i,i+1