add missing files
This commit is contained in:
parent
1313377328
commit
e680da775a
4 changed files with 10391 additions and 3 deletions
3
.gitignore
vendored
3
.gitignore
vendored
|
@ -3,9 +3,6 @@ gcc/
|
||||||
binutils/
|
binutils/
|
||||||
gawk/
|
gawk/
|
||||||
builddir/
|
builddir/
|
||||||
config.cmake
|
|
||||||
config.h
|
|
||||||
gen*.h
|
|
||||||
build/
|
build/
|
||||||
__pycache__/
|
__pycache__/
|
||||||
*.iso
|
*.iso
|
||||||
|
|
9
config.cmake
Normal file
9
config.cmake
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
SET(ARCH arm)
|
||||||
|
SET(SYSTEM 3ds9)
|
||||||
|
SET(LOWEST_CPU arm946e-s)
|
||||||
|
SET(ENABLE_THUMB 1)
|
||||||
|
SET(ENABLE_EXTRA_MEMORY 1)
|
||||||
|
SET(DRIVER_SRCS ${DRIVER_SRCS} hw/framebuffer/*.c hw/framebuffer/*.cpp hw/framebuffer/*.s)
|
||||||
|
SET(DRIVER_SRCS ${DRIVER_SRCS} hw/3ds9/picafb/*.c hw/3ds9/picafb/*.cpp hw/3ds9/picafb/*.s)
|
||||||
|
SET(DRIVER_SRCS ${DRIVER_SRCS} hw/3ds9/vectorinit/*.c hw/3ds9/vectorinit/*.cpp hw/3ds9/vectorinit/*.s)
|
||||||
|
SET(DRIVER_SRCS ${DRIVER_SRCS} hw/pmm/*.c hw/pmm/*.cpp hw/pmm/*.s)
|
6
config.h
Normal file
6
config.h
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
#define ARCH "arm"
|
||||||
|
#define SYSTEM "3ds9"
|
||||||
|
#define LOWEST_CPU "arm946e-s"
|
||||||
|
#define ENABLE_THUMB 1
|
||||||
|
#define ENABLE_EXTRA_MEMORY 1
|
||||||
|
#undef ENABLE_FRAMEBUFFER_UNICODE
|
10376
kernel/src/include/genfont.h
Normal file
10376
kernel/src/include/genfont.h
Normal file
File diff suppressed because it is too large
Load diff
Loading…
Reference in a new issue