Skip to content

Instantly share code, notes, and snippets.

View laqieer's full-sized avatar

laqieer

View GitHub Profile
@laqieer
laqieer / SongName.c
Created April 29, 2022 18:30
FE8 Songs
char *song_name_tbl[] = {
"",
"AGBFE3_BGM_OPENING",
"AGBFE3_BGM_OP_THEME_I",
"AGBFE3_BGM_PRO_FIRST",
"AGBFE3_BGM_WMAP_01",
"AGBFE3_BGM_WMAP_02",
"AGBFE3_BGM_WMAP_03",
"AGBFE3_BGM_WMAP_04",
"AGBFE3_BGM_WMAP_05",
@laqieer
laqieer / re-repo_update.bat
Created May 18, 2023 14:42
Batch script to update FE modding resources by 7743
@echo off
where git > nul
if %errorlevel% neq 0 (
echo "git is required."
echo "Please install it from the following website."
echo "https://gitforwindows.org/"
pause
start https://gitforwindows.org/
goto EXIT
)
@laqieer
laqieer / build.sh
Last active April 4, 2024 16:06
Example to write string in UTF-8 encoded source file but tell compiler to store string in SJIS
#!/bin/sh
arm-none-eabi-gcc -S test.c
# https://gcc.gnu.org/onlinedocs/cpp/Invocation.html#index-fexec-charset
arm-none-eabi-gcc -S test.c -o test_sjis.s -fexec-charset=sjis