This is a test post for SPO600
Lab 4 (x86)
For this lab we were tasked with doing the same loop problem from the aarch64. How ever me being the genius I am I tried to switch to the x86 well still on the Israel server not even thinking to switch to the Portugal one. So After just getting that sorted out I can now attempt to build the code. Also unpacking the file was needed again as you can see here: I have so far got it loop the hello world out but just need to change it to loop for the ascii message and print the number here is my code so far min = 0 /* starting value for the loop index; note that this is a symbol (constant), not a variable */ max = 10 /* loop exits when the index hits this number (loop condition is i<max) */ _start: mov $min,%r15 /* loop index */ lo...
Comments
Post a Comment