This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import os | |
def read_file_list(file_path): | |
with open(file_path, 'r') as f: | |
file_list = f.readlines() | |
print("Files in the folder:") | |
for file in file_list: | |
file= file.strip() | |
if os.path.exists(file) and os.path.isfile(file): |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@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 | |
) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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", |