Skip to content

Commit 9d1ac26

Browse files
committed
Using Z80 Optimzed Routines repository instead.
1 parent 73965d2 commit 9d1ac26

10 files changed

+7
-543
lines changed

src/convert/to_str.z80

+5-5
Original file line numberDiff line numberDiff line change
@@ -19,15 +19,15 @@ _:
1919
ui8_convert_to_str:
2020
ld a,(de)
2121
ld hl,OP1
22-
#include "subroutines/uitoa_8.z80"
22+
#include "conversion/uitoa_8.z80"
2323

2424
ui16_convert_to_str:
2525
ex de,hl
2626
ld e,(hl)
2727
inc hl
2828
ld d,(hl)
2929
ld hl,OP1
30-
#include "subroutines/uitoa_16.z80"
30+
#include "conversion/uitoa_16.z80"
3131

3232
ui32_convert_to_str:
3333
ex de,hl
@@ -42,15 +42,15 @@ ui32_convert_to_str:
4242
ex de,hl
4343
ld ix,OP1+10
4444
ld (ix),0
45-
#include "subroutines/uint32tostr_baseC.z80"
45+
#include "conversion/uint32tostr_baseC.z80"
4646

4747
fixed88_convert_to_str:
4848
ex de,hl
4949
ld e,(hl)
5050
inc hl
5151
ld d,(hl)
5252
ld hl,OP1
53-
#include "subroutines/fixed88_to_str.z80"
53+
#include "conversion/fixed88_to_str.z80"
5454

5555
fixed1616_convert_to_str:
5656
ex de,hl
@@ -63,7 +63,7 @@ fixed1616_convert_to_str:
6363
ld h,(hl)
6464
ld l,a
6565
ex de,hl
66-
#include "subroutines/fixed1616_to_str.z80"
66+
#include "conversion/fixed1616_to_str.z80"
6767

6868
true_convert_to_str:
6969
false_convert_to_str:

src/parsnip.z80

+2-2
Original file line numberDiff line numberDiff line change
@@ -2067,8 +2067,8 @@ DrawRectToGraph:
20672067
#include "gfx/gbufToLCD.z80"
20682068
#include "subroutines/diRestore.z80"
20692069
#include "subroutines/CheckStatus.z80"
2070-
#include "subroutines/itoa_16.z80"
2071-
#include "subroutines/atoui32.z80"
2070+
#include "conversion/itoa_16.z80"
2071+
#include "conversion/atoui32.z80"
20722072
#include "subroutines/util.z80"
20732073
#include "subroutines/searchlabel.z80"
20742074
#include "parsnipdata.z80"

src/subroutines/atoui32.z80

-41
This file was deleted.

src/subroutines/fixed1616_to_str.z80

-79
This file was deleted.

src/subroutines/fixed88_to_str.z80

-90
This file was deleted.

src/subroutines/itoa_16.z80

-93
This file was deleted.

0 commit comments

Comments
 (0)