Overview
Comment: | src/amiga-library.xml: Fix typo |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | amiga-library |
Files: | files | file ages | folders |
SHA3-256: |
333dd5d0ca1ebb11612113c1362b00f2 |
User & Date: | js on 2022-11-17 17:30:35 |
Other Links: | branch diff | manifest | tags |
Context
2022-12-12
| ||
15:06 | Create baserel linklibs check-in: 8329607f4e user: js tags: amiga-library | |
2022-11-17
| ||
17:30 | src/amiga-library.xml: Fix typo check-in: 333dd5d0ca user: js tags: amiga-library | |
17:26 | Only ignore -Warray-parameter with GCC >= 11 check-in: 8ed68c3f28 user: js tags: amiga-library | |
Changes
Modified src/amiga-glue.m from [7f9a766df9] to [edf7296f72].
︙ | ︙ | |||
494 495 496 497 498 499 500 | return OFSocketAddressAppleTalkNetwork(address); } void __saveds glue_OFSocketAddressSetAppleTalkNode PPC_PARAMS(OFSocketAddress *address, uint8_t node) { M68K_ARG(OFSocketAddress *, address, a0) | | | | 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 | return OFSocketAddressAppleTalkNetwork(address); } void __saveds glue_OFSocketAddressSetAppleTalkNode PPC_PARAMS(OFSocketAddress *address, uint8_t node) { M68K_ARG(OFSocketAddress *, address, a0) M68K_ARG(uint8_t, node, d0) OFSocketAddressSetAppleTalkNode(address, node); } uint8_t __saveds glue_OFSocketAddressAppleTalkNode PPC_PARAMS(const OFSocketAddress *address) { M68K_ARG(const OFSocketAddress *, address, a0) return OFSocketAddressAppleTalkNode(address); } void __saveds glue_OFSocketAddressSetAppleTalkPort PPC_PARAMS(OFSocketAddress *address, uint8_t port) { M68K_ARG(OFSocketAddress *, address, a0) M68K_ARG(uint8_t, port, d0) OFSocketAddressSetAppleTalkPort(address, port); } uint8_t __saveds glue_OFSocketAddressAppleTalkPort PPC_PARAMS(const OFSocketAddress *address) { |
︙ | ︙ |
Modified src/amiga-library.xml from [735bf80a8c] to [31286c8139].
︙ | ︙ | |||
205 206 207 208 209 210 211 | <argument name='network' type='uint16_t' m68k-reg='d0'/> </function> <function name='OFSocketAddressAppleTalkNetwork' return-type='uint16_t'> <argument name='address' type='const OFSocketAddress *' m68k-reg='a0'/> </function> <function name='OFSocketAddressSetAppleTalkNode'> <argument name='address' type='OFSocketAddress *' m68k-reg='a0'/> | | | | 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 | <argument name='network' type='uint16_t' m68k-reg='d0'/> </function> <function name='OFSocketAddressAppleTalkNetwork' return-type='uint16_t'> <argument name='address' type='const OFSocketAddress *' m68k-reg='a0'/> </function> <function name='OFSocketAddressSetAppleTalkNode'> <argument name='address' type='OFSocketAddress *' m68k-reg='a0'/> <argument name='node' type='uint8_t' m68k-reg='d0'/> </function> <function name='OFSocketAddressAppleTalkNode' return-type='uint8_t'> <argument name='address' type='const OFSocketAddress *' m68k-reg='a0'/> </function> <function name='OFSocketAddressSetAppleTalkPort'> <argument name='address' type='OFSocketAddress *' m68k-reg='a0'/> <argument name='port' type='uint8_t' m68k-reg='d0'/> </function> <function name='OFSocketAddressAppleTalkPort' return-type='uint8_t'> <argument name='address' type='const OFSocketAddress *' m68k-reg='a0'/> </function> <include>OFTLSStream.h</include> <function name='OFTLSStreamErrorCodeDescription' return-type='OFString *'> <argument name='errorCode' type='OFTLSStreamErrorCode' m68k-reg='d0'/> |
︙ | ︙ |
Modified src/linklib/linklib.m from [9977294bf7] to [0835c2a6e1].
︙ | ︙ | |||
997 998 999 1000 1001 1002 1003 | void OFSocketAddressSetAppleTalkNode(OFSocketAddress *address, uint8_t node) { #if defined(OF_AMIGAOS_M68K) register struct Library *a6 __asm__("a6") = ObjFWBase; (void)a6; | | | 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 | void OFSocketAddressSetAppleTalkNode(OFSocketAddress *address, uint8_t node) { #if defined(OF_AMIGAOS_M68K) register struct Library *a6 __asm__("a6") = ObjFWBase; (void)a6; ((void (*)(OFSocketAddress *__asm__("a0"), uint8_t __asm__("d0")))(((uintptr_t)ObjFWBase) - 366))(address, node); #elif defined(OF_MORPHOS) __asm__ __volatile__ ( "mr %%r12, %0" :: "r"(ObjFWBase) : "r12" ); __extension__ ((void (*)(OFSocketAddress *, uint8_t))*(void **)(((uintptr_t)ObjFWBase) - 364))(address, node); |
︙ | ︙ | |||
1031 1032 1033 1034 1035 1036 1037 | void OFSocketAddressSetAppleTalkPort(OFSocketAddress *address, uint8_t port) { #if defined(OF_AMIGAOS_M68K) register struct Library *a6 __asm__("a6") = ObjFWBase; (void)a6; | | | 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 | void OFSocketAddressSetAppleTalkPort(OFSocketAddress *address, uint8_t port) { #if defined(OF_AMIGAOS_M68K) register struct Library *a6 __asm__("a6") = ObjFWBase; (void)a6; ((void (*)(OFSocketAddress *__asm__("a0"), uint8_t __asm__("d0")))(((uintptr_t)ObjFWBase) - 378))(address, port); #elif defined(OF_MORPHOS) __asm__ __volatile__ ( "mr %%r12, %0" :: "r"(ObjFWBase) : "r12" ); __extension__ ((void (*)(OFSocketAddress *, uint8_t))*(void **)(((uintptr_t)ObjFWBase) - 376))(address, port); |
︙ | ︙ |