Skip to content

Commit e999114

Browse files
Add things
1 parent 7ebb1f1 commit e999114

File tree

7 files changed

+12
-4
lines changed

7 files changed

+12
-4
lines changed

src/graphx/graphx.asm

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,12 +94,12 @@
9494
.function "gfx_SetTextConfig",_SetTextConfig
9595
.function "gfx_GetSpriteChar",_GetSpriteChar
9696
;-------------------------------------------------------------------------------
97-
; v4 functions
97+
; v4 functions - Can no longer move/delete
9898
;-------------------------------------------------------------------------------
9999
.function "gfx_Lighten",_Lighten
100100
.function "gfx_Darken",_Darken
101101
;-------------------------------------------------------------------------------
102-
; v5 functions
102+
; v5 functions - Can no longer move/delete
103103
;-------------------------------------------------------------------------------
104104
.function "gfx_SetFontHeight",_SetFontHeight
105105
.function "gfx_ScaleSprite",_ScaleSprite

src/std/shared/abs.src

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
.def _abs
22
.assume adl=1
33

4+
int abs(int);
5+
46
_abs:
57
pop hl
68
pop de
@@ -12,3 +14,4 @@ _abs:
1214
ret p
1315
ex de,hl
1416
ret
17+

src/std/shared/atoi.src

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
.def _atoi
33
.assume adl=1
44

5-
; int atos(char *cp);
5+
; int atoi(char *cp);
66

77
_atoi:
88
pop bc
@@ -19,3 +19,4 @@ _atoi:
1919
pop bc
2020
pop bc
2121
ret
22+

src/std/shared/atol.src

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
.def _atol
33
.assume adl=1
44

5-
; long atos(char *cp);
5+
; long atol(char *cp);
66

77
_atol equ _atoi
8+

src/std/shared/atos.src

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,4 @@
55
; short int atos(char *cp);
66

77
_atos equ _atoi
8+

src/std/shared/bdivs.src

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,3 +41,4 @@ _L1:
4141
_L2:
4242
pop hl
4343
ret
44+

src/std/static/fmod.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,3 +37,4 @@ double fmod(double x, double y) {
3737

3838
return(result);
3939
}
40+

0 commit comments

Comments
 (0)