diff options
Diffstat (limited to 'gdb/arm-convert.s')
-rw-r--r-- | gdb/arm-convert.s | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/gdb/arm-convert.s b/gdb/arm-convert.s new file mode 100644 index 0000000..416132b --- /dev/null +++ b/gdb/arm-convert.s @@ -0,0 +1,16 @@ + .text + .global _convert_from_extended + +_convert_from_extended: + + ldfe f0,[a1] + stfd f0,[a2] + movs pc,lr + + .global _convert_to_extended + +_convert_to_extended: + + ldfd f0,[a1] + stfe f0,[a2] + movs pc,lr |