Nios/findlabel
From ASMBits
nios/findstackPrevious
Write a function that will return the location pointed to by the label Waldo.
Expected solution length: Around 2 lines.
Sample Input
[none]
Sample Output
r2=0x04000000
nios/findstackPrevious
Write a function that will return the location pointed to by the label Waldo.
Expected solution length: Around 2 lines.
[none]
r2=0x04000000
# Some testing code # Make sure to submit without "Waldo" defined in your code, or you will get a "multiple definition" error. # Waldo: .string "Where's Waldo??" .global _start _start: call where 1: br 1b # done # Your function starts here: where: