forked from arendst/Tasmota
-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
32 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
|
||
#ifdef ESP8266 | ||
|
||
.section .text.mod_part | ||
.align 4 | ||
.global j_mulsf3 | ||
.type j_mulsf3,@function | ||
j_mulsf3: | ||
addi sp, sp, -8 | ||
s32i.n a4, sp, 4 | ||
l32r a4, module_header+52 | ||
l32i a4, a4, 160 # table offset of mulsf3 | ||
|
||
# common part | ||
s32i.n a0, sp, 0 | ||
callx0 a4 | ||
l32i.n a0, sp, 0 | ||
l32i.n a4, sp, 4 | ||
addi sp, sp, 8 | ||
ret.n | ||
|
||
|
||
.section .text.mod_part | ||
.align 4 | ||
.global gettbl | ||
.type gettbl,@function | ||
gettbl: | ||
l32r a2, module_header+48 | ||
ret.n | ||
|
||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters