1@ VFP2 Additional instructions 2 .text 3 .global F 4F: 5 @ First we test the basic syntax and bit patterns of the opcodes. 6 @ Use a combination of r5, r10, s15, s17, d0 and d15 to exercise 7 @ the full register bitpatterns 8 9 fmdrr d0, r5, r10 10 fmrrd r5, r10, d0 11 fmsrr {s15, s16}, r5, r10 12 fmrrs r5, r10, {s15, s16} 13 14 fmdrr d15, r10, r5 15 fmrrd r10, r5, d15 16 fmsrr {s17, s18}, r10, r5 17 fmrrs r10, r5, {s17, s18} 18 19