Skip to content

Commit 2450577

Browse files
Merge branch 'master' into opt/_AllocSprite
2 parents 61efd2d + 60006ac commit 2450577

File tree

615 files changed

+7251
-8829
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

615 files changed

+7251
-8829
lines changed

.gitattributes

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
*.c text eol=lf
2+
*.h text eol=lf
3+
*.asm text eol=lf
4+
*.inc text eol=lf
5+
*.ini text eol=lf
6+
*.log text eol=lf
7+
*.bat text eol=lf
8+
*.txt text eol=lf
9+
*.md text eol=lf

.gitignore

+35-32
Original file line numberDiff line numberDiff line change
@@ -1,32 +1,35 @@
1-
# Object files
2-
*.o
3-
*.ko
4-
*.obj
5-
*.elf
6-
7-
# Precompiled Headers
8-
*.gch
9-
*.pch
10-
11-
# Libraries
12-
*.lib
13-
*.a
14-
*.la
15-
*.lo
16-
17-
# Shared objects (inc. Windows DLLs)
18-
*.dll
19-
*.so
20-
*.so.*
21-
*.dylib
22-
23-
# Executables
24-
*.exe
25-
*.out
26-
*.app
27-
*.i*86
28-
*.x86_64
29-
*.hex
30-
31-
# Debug files
32-
*.dSYM/
1+
# Backups
2+
*~
3+
4+
# Object files
5+
*.o
6+
*.ko
7+
*.obj
8+
*.elf
9+
obj/
10+
11+
# Precompiled Headers
12+
*.gch
13+
*.pch
14+
relocation_table
15+
*_header.asm
16+
*_equates.asm
17+
18+
# Libraries
19+
*.lib
20+
*.a
21+
*.la
22+
*.lo
23+
24+
# Shared objects
25+
*.so
26+
*.so.*
27+
*.dylib
28+
29+
# Executables
30+
*.hex
31+
*.8xv
32+
33+
# Debug files
34+
*.dSYM/
35+
*.map

.gitmodules

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
[submodule "src/tools/convhex"]
2+
path = tools/convhex
3+
url = https://github.com/MattWaltz/convhex
4+
[submodule "src/tools/convpng"]
5+
path = tools/convpng
6+
url = https://github.com/MattWaltz/convpng
7+
[submodule "tools/spasm-ng"]
8+
path = tools/spasm-ng
9+
url = https://github.com/MattWaltz/spasm-ng.git

CEdev/bin/main_makefile

-265
This file was deleted.

0 commit comments

Comments
 (0)