1
0
mirror of https://github.com/cahirwpz/libnix.git synced 2025-11-19 16:00:58 +00:00
Files
amiga-libnix2/sources/nix20/math/__mulsi3.c
Krystian Bacławski b1c9ff1a73 Devise a counterpart for libnix13.
From now on nix13 or nix20 will have to be provided explicitely to linker,
depending on which Kickstart your application should run on.
2016-10-08 22:42:48 +02:00

12 lines
159 B
C

#include "bases.h"
asm(
" .globl ___mulsi3;"
/* D0 = D0 * D1 */
"___mulsi3: moveml sp@(4),d0/d1;"
" movel "A4(_UtilityBase)",a0;"
" jmp a0@(-138:W);"
);