Advertisement
Guest User

Untitled

a guest
Feb 26th, 2020
157
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
ARM 0.46 KB | None | 0 0
  1. // Vineet Joshi
  2. // February 20, 2020
  3. // change.s
  4. // This is my starter code for Lab7b of COEN 20.
  5.  
  6.         .syntax     unified
  7.         .cpu        cortex-m4
  8.         .text
  9.    
  10.     // void Bills(uint32_t dollars, BILLS *paper);
  11.         .global     Bills
  12.         .thumb_func
  13.     Bills:
  14.         // TODO: Write your Assembly code for the 'Bills' function.
  15.    
  16.     // void Coins(uint32_t cents, COINS *coins);
  17.         .global     Coins
  18.         .thumb_func
  19.     Coins:
  20.         // TODO: Write your Assembly code for the 'Coins' function.
  21.    
  22.         .end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement