comparison dyncallback/dyncall_callback_mips_gas.S @ 94:ea17e6e6bd3a

- stubs for mips callback support
author cslag
date Sat, 04 Jun 2016 17:11:44 +0200 (2016-06-04)
parents
children b7a9b524f0c3
comparison
equal deleted inserted replaced
93:dfde5035d410 94:ea17e6e6bd3a
1 /*
2
3 Package: dyncall
4 Library: dyncallback
5 File: dyncallback/dyncall_callback_mips_gas.S
6 Description: auto-select (via C preprocessor) mips abi callback implementation
7 License:
8
9 Copyright (c) 2016 Tassilo Philipp <tphilipp@potion-studios.com>
10
11 Permission to use, copy, modify, and distribute this software for any
12 purpose with or without fee is hereby granted, provided that the above
13 copyright notice and this permission notice appear in all copies.
14
15 THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
16 WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
17 MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
18 ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
19 WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
20 ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
21 OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
22
23 */
24
25
26
27 #if defined(DC__ABI_MIPS_O32)
28 #include "dyncall_callback_mips_o32_gas.s"
29 #elif defined(DC__ABI_MIPS_N64)
30 #include "dyncall_callback_mips_n64_gas.s"
31 #elif defined(DC__ABI_MIPS_N32)
32 #include "dyncall_callback_mips_n32_gas.s"
33 #else
34 #include "dyncall_callback_mips_eabi_gas.s"
35 #endif
36