Advertisement
Guest User

Untitled

a guest
Mar 23rd, 2012
40
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. _heap_alloc_walkheap:
  2. /* Walk the heap, one word at a time. */
  3. cmp r0, r1 /* are we at the end? */
  4. bhi _heap_alloc_fail /* Crap. */
  5.  
  6. /* TODO: implement */
  7.  
  8. add r0, r0, #4
  9. b _heap_alloc_walkheap
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement