From 818ade660d91e121e7a84eee226052c70644b248 Mon Sep 17 00:00:00 2001 From: wheremyfoodat Date: Sun, 18 Sep 2022 15:58:35 +0300 Subject: [PATCH] Rename test folder & update gitignore --- .gitignore | 5 +++++ {test_roms => tests}/HelloWorldSVC/Makefile | 0 {test_roms => tests}/HelloWorldSVC/source/main.c | 0 {test_roms => tests}/SimplerTri/Makefile | 0 {test_roms => tests}/SimplerTri/source/main.c | 0 {test_roms => tests}/SimplerTri/source/vshader.v.pica | 0 6 files changed, 5 insertions(+) rename {test_roms => tests}/HelloWorldSVC/Makefile (100%) rename {test_roms => tests}/HelloWorldSVC/source/main.c (100%) rename {test_roms => tests}/SimplerTri/Makefile (100%) rename {test_roms => tests}/SimplerTri/source/main.c (100%) rename {test_roms => tests}/SimplerTri/source/vshader.v.pica (100%) diff --git a/.gitignore b/.gitignore index e844ef70..65eb8d7a 100644 --- a/.gitignore +++ b/.gitignore @@ -52,3 +52,8 @@ fb.bat *.nam *.til *.idb + +# 3DS files +*.3dsx +*.elf +*.smdh \ No newline at end of file diff --git a/test_roms/HelloWorldSVC/Makefile b/tests/HelloWorldSVC/Makefile similarity index 100% rename from test_roms/HelloWorldSVC/Makefile rename to tests/HelloWorldSVC/Makefile diff --git a/test_roms/HelloWorldSVC/source/main.c b/tests/HelloWorldSVC/source/main.c similarity index 100% rename from test_roms/HelloWorldSVC/source/main.c rename to tests/HelloWorldSVC/source/main.c diff --git a/test_roms/SimplerTri/Makefile b/tests/SimplerTri/Makefile similarity index 100% rename from test_roms/SimplerTri/Makefile rename to tests/SimplerTri/Makefile diff --git a/test_roms/SimplerTri/source/main.c b/tests/SimplerTri/source/main.c similarity index 100% rename from test_roms/SimplerTri/source/main.c rename to tests/SimplerTri/source/main.c diff --git a/test_roms/SimplerTri/source/vshader.v.pica b/tests/SimplerTri/source/vshader.v.pica similarity index 100% rename from test_roms/SimplerTri/source/vshader.v.pica rename to tests/SimplerTri/source/vshader.v.pica