Store Three Consecutive Halfwords

From Final Fantasy Hacktics Wiki
Revision as of 00:51, 17 October 2016 by Glain (talk | contribs) (Created page with " # ROUTINE: STORE THREE CONSECUTIVE HALFWORDS # Parameters: # r4 = Destination address # r5 = First halfword value to store # r6 = Se...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
#   ROUTINE: STORE THREE CONSECUTIVE HALFWORDS
#       Parameters:
#           r4 = Destination address
#           r5 = First halfword value to store
#           r6 = Second halfword value to store
#           r7 = Third halfword value to store

00042b1c: a4850000 sh r5,0x0000(r4)
00042b20: a4860002 sh r6,0x0002(r4)
00042b24: 03e00008 jr r31
00042b28: a4870004 sh r7,0x0004(r4)