Advertisement
novaking148

yehonatan_hw4

Nov 16th, 2018
196
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.74 KB | None | 0 0
  1. אני שמח לראות את תהליך העבודה שלך יהונתן, כל הכבוד על העבודה הקשה ושאילת השאלות ורואים את התוצאות משתפרות מפעם לפעם
  2.  
  3. -3) You forgot to implement the minimum function :'(
  4. - You tried to save the return value inside res, which is very good, but note that you did:
  5. mov [bp+8],di ; *(bp + 8) = di
  6. it doesnt do *res = di
  7. you needed another pointer to use:
  8. mov bx, [bp + 8]
  9. mov [bx], di
  10. - What would happen if I passed a negative number? (think about ja)
  11. -3_4) You didn't submit a stack drawing :(
  12. הפעם שכחת כמה דברים בדרך, אני זוכר ששלחת לי את התיקון של התרגיל 3 ולכן אתייחס אליו בניקוד.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement