Initial commit

This commit is contained in:
Alexandre 2026-04-27 20:45:54 +02:00
parent cb6da6bdbc
commit 3e3c5dcb3e
3 changed files with 11 additions and 5 deletions

8
.gitignore vendored
View File

@ -111,7 +111,8 @@ dkms.conf
.LSOverride
# Icon must end with two \r
Icon
Icon
# Thumbnails
._*
@ -161,3 +162,8 @@ $RECYCLE.BIN/
# ---> Build
build/
build-*/
# ---> 3DS
*.elf
*.3dsx
*.smdh

View File

@ -33,9 +33,9 @@ include $(DEVKITARM)/3ds_rules
#---------------------------------------------------------------------------------
TARGET := $(notdir $(CURDIR))
BUILD := build
SOURCES := source
SOURCES := src
DATA := data
INCLUDES := include
INCLUDES := src/includes
GRAPHICS := gfx
GFXBUILD := $(BUILD)
#ROMFS := romfs

View File

@ -1,5 +1,5 @@
#include <iostream>
#include <3ds.h>
int main() {
int main( int argc, char* argv[] ) {
return 0;
}