Skip to content

Commit 791e98f

Browse files
author
511V41
committed
first commit
0 parents  commit 791e98f

34 files changed

+2039
-0
lines changed

.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
*.elf
2+
*.o
3+
*.prx
4+
PARAM.SFO
5+
EBOOT.PBP

.vscode/c_cpp_properties.json

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
{
2+
"configurations": [
3+
{
4+
"name": "Mac",
5+
"includePath": [
6+
"${workspaceFolder}/**",
7+
"/usr/local/pspdev/psp/sdk/include/"
8+
],
9+
"defines": [],
10+
"macFrameworkPath": [
11+
"/Library/Developer/CommandLineTools/SDKs/MacOSX10.14.sdk/System/Library/Frameworks"
12+
],
13+
"compilerPath": "/usr/bin/clang",
14+
"cStandard": "c11",
15+
"cppStandard": "c++98",
16+
"intelliSenseMode": "macos-clang-x64"
17+
}
18+
],
19+
"version": 4
20+
}

.vscode/settings.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"C_Cpp.clang_format_style": "{BasedOnStyle: Google, IndentWidth: 2}"
3+
}

Makefile

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
TARGET = java_button
2+
OBJS = src/main.o src/screen_setting.o
3+
4+
INCDIR =
5+
CFLAGS = -O2 -G0 -Wall
6+
CXXFLAGS = $(CFLAGS) -fno-exceptions -fno-rtti -fcheck-new
7+
ASFLAGS = $(CFLAGS)
8+
9+
LIBDIR =
10+
LDFLAGS =
11+
12+
LIBS =
13+
LIBS += dxlibp_UTF8.a -lpspgu -lz -lm -lpsprtc -lpspaudio -lpspaudiocodec -lstdc++ -lpsputility -lpspvalloc -lpsppower
14+
15+
EXTRA_TARGETS = EBOOT.PBP
16+
PSP_EBOOT_TITLE = Java Button
17+
PSP_EBOOT_ICON = assets/icon.png
18+
19+
PSPSDK=$(shell psp-config --pspsdk-path)
20+
include $(PSPSDK)/lib/build.mak

README.md

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
# psp java button
2+
3+
ジャバ!
4+
5+
[リリースページ](https://github.com/511V41/psp-java-button/releases/)からZIPファイルをダウンロードして `PSP/GAME/` 内に展開してください。無ければ作ってください。
6+
7+
注: CFW必須
8+
9+
- [秘密結社 ジャバ組](https://github.com/arigato-java)の素材を利用しています。
10+
- 開発環境については[こちら](https://511v41.github.io/2021/04/30/psp)を参考にしてください。
11+
12+
## 著作権表示
13+
14+
```
15+
intraFont
16+
Uses intraFont by BenHur
17+
```
18+
19+
```
20+
liblzr
21+
Uses liblzr by BenHur
22+
```
23+
24+
```
25+
全角文字表示ライブラリ
26+
このソフトウェアはmediumgauge氏作成の全角文字表示ライブラリを使用しています。
27+
```
28+
29+
```
30+
DXライブラリPortable
31+
DX Library Portable Copyright (C) 2008-2010 Kawai Yuichi.
32+
```

assets/JAVA_1.mp3

9.11 KB
Binary file not shown.

assets/JAVA_10.mp3

32 KB
Binary file not shown.

assets/JAVA_11.mp3

27.9 KB
Binary file not shown.

assets/JAVA_12.mp3

30.1 KB
Binary file not shown.

assets/JAVA_13.mp3

17.4 KB
Binary file not shown.

0 commit comments

Comments
 (0)