Advertisement
Guest User

Untitled

a guest
Feb 28th, 2015
188
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. ORG $1000
  2. START: ; first instruction of program
  3.  
  4. move.w A,d0
  5. move.w B,d1
  6. add.w d1,d0 ; d0 <- d0 + d1
  7. move.w d0,C
  8. trap #15
  9.  
  10. org $5000
  11.  
  12. A dc.w 16
  13. B dc.w w
  14. C dc.w 1
  15. END START ; last line of source
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement