diff options
| author | Xavier ASUS <xavi92psx@gmail.com> | 2019-10-23 03:38:57 +0200 |
|---|---|---|
| committer | Xavier ASUS <xavi92psx@gmail.com> | 2019-10-23 03:38:57 +0200 |
| commit | 4df948b3c184864525e7fa7e26ab380a70d644cd (patch) | |
| tree | 1dcb5d0961ebe374b970bed721d39dae5e6eddd6 /device/lib/stm8-large/modff.asm | |
| parent | 2cece67cb5af0339e4ab1f18b0bce2f0b4e6ebdd (diff) | |
| download | sdcc-gas-4df948b3c184864525e7fa7e26ab380a70d644cd.tar.gz | |
Removed intermediate files
Diffstat (limited to 'device/lib/stm8-large/modff.asm')
| -rw-r--r-- | device/lib/stm8-large/modff.asm | 90 |
1 files changed, 0 insertions, 90 deletions
diff --git a/device/lib/stm8-large/modff.asm b/device/lib/stm8-large/modff.asm deleted file mode 100644 index a388770..0000000 --- a/device/lib/stm8-large/modff.asm +++ /dev/null @@ -1,90 +0,0 @@ -;-------------------------------------------------------- -; File Created by SDCC : free open source ANSI-C Compiler -; Version 3.9.3 #11345 (Linux) -;-------------------------------------------------------- - .module modff - .optsdcc -mstm8 - -;-------------------------------------------------------- -; Public variables in this module -;-------------------------------------------------------- - .globl _modff -;-------------------------------------------------------- -; ram data -;-------------------------------------------------------- - .area DATA -;-------------------------------------------------------- -; ram data -;-------------------------------------------------------- - .area INITIALIZED -;-------------------------------------------------------- -; absolute external ram data -;-------------------------------------------------------- - .area DABS (ABS) - -; default segment ordering for linker - .area HOME - .area GSINIT - .area GSFINAL - .area CONST - .area INITIALIZER - .area CODE - -;-------------------------------------------------------- -; global & static initialisations -;-------------------------------------------------------- - .area HOME - .area GSINIT - .area GSFINAL - .area GSINIT -;-------------------------------------------------------- -; Home -;-------------------------------------------------------- - .area HOME - .area HOME -;-------------------------------------------------------- -; code -;-------------------------------------------------------- - .area CODE -; ../modff.c: 33: float modff(float x, float * y) -; ----------------------------------------- -; function modff -; ----------------------------------------- -_modff: - sub sp, #6 -; ../modff.c: 35: *y=(long)x; - ldw y, (0x0e, sp) - ldw (0x01, sp), y - ldw x, (0x0c, sp) - pushw x - ldw x, (0x0c, sp) - pushw x - callf ___fs2slong - addw sp, #4 - pushw x - pushw y - callf ___slong2fs - addw sp, #4 - ldw (0x05, sp), x - ldw x, (0x01, sp) - ld a, (0x06, sp) - ld (0x3, x), a - ld a, (0x05, sp) - ld (0x2, x), a - ldw (x), y -; ../modff.c: 36: return (x-*y); - ldw x, (0x05, sp) - pushw x - pushw y - ldw x, (0x10, sp) - pushw x - ldw x, (0x10, sp) - pushw x - callf ___fssub -; ../modff.c: 37: } - addw sp, #14 - retf - .area CODE - .area CONST - .area INITIALIZER - .area CABS (ABS) |
