Skip to content

Commit

Permalink
HDD Support and dynamic installation tables (#4)
Browse files Browse the repository at this point in the history
  • Loading branch information
israpps authored Jun 10, 2023
1 parent a93aef7 commit 31ebfc0
Show file tree
Hide file tree
Showing 53 changed files with 2,276 additions and 643 deletions.
12 changes: 9 additions & 3 deletions .github/workflows/compilation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,10 @@ jobs:
run: |
git config --global --add safe.directory "$GITHUB_WORKSPACE"
- uses: actions/checkout@v3
- run: |
git fetch --prune --unshallow
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0

- name: update dependencies
run: |
Expand All @@ -40,6 +41,11 @@ jobs:
run: |
echo "SHA8=$(echo ${GITHUB_SHA} | cut -c1-8)" >> $GITHUB_ENV
- name: build changelogs and move extra files
run: |
make changelog
cp LICENSE bin/LICENSE.TXT
- name: Get branch
if: github.ref != 'refs/heads/main'
id: brnch
Expand Down
8 changes: 6 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@

.vscode/settings.json
.vscode/launch.json

*.bak
*.otf
bin/img/bg0.png
bin/img/bg1.png
Expand Down Expand Up @@ -41,3 +40,8 @@ obj/
asm/
*.7z
*.log
FULL_CHANGELOG.TXT
PARTIAL_CHANGELOG.TXT
*.opt
*.opt
bin/KELFBinder_log.txt
24 changes: 24 additions & 0 deletions .vscode/c_cpp_properties.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
{
"configurations": [
{
"name": "PS2SDK",
"includePath": [
"${workspaceFolder}/**",
"/usr/local/ps2dev/ps2sdk/common/include/",
"/usr/local/ps2dev/ps2sdk/ports/include",
"/usr/local/ps2dev/ps2sdk/ee/include/",
"/usr/local/ps2dev/gsKit/include",
"${workspaceFolder}/include"
],
"defines": [
"_EE"
],
"compilerPath": "/usr/local/ps2dev/ee/bin/mips64r5900el-ps2-elf-gcc",
"cStandard": "gnu17",
"cppStandard": "gnu++17",
"intelliSenseMode": "${default}",
"configurationProvider": "ms-vscode.makefile-tools"
}
],
"version": 4
}
82 changes: 82 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,82 @@
{
"Lua.diagnostics.globals": [
"AMBIENT",
"CHN_STANDARD",
"CT16",
"CT16S",
"CT24",
"CT32",
"CUR",
"Camera",
"Color",
"DIRECTIONAL",
"END",
"EUR_ROM_120",
"EUR_STANDARD",
"FCREATE",
"FIELD",
"FIO_MT_RDONLY",
"FIO_MT_RDWR",
"FRAME",
"FRDWR",
"FREAD",
"FWRITE",
"Font",
"Graphics",
"HDD",
"INTERLACED",
"JAP_ROM_100",
"JAP_ROM_101",
"JAP_ROM_120",
"JAP_STANDARD",
"KELFBinder",
"LINEAR",
"Lights",
"NEAREST",
"NONINTERLACED",
"NTSC",
"PAD_ANALOG",
"PAD_CIRCLE",
"PAD_CROSS",
"PAD_DIGITAL",
"PAD_DOWN",
"PAD_DUALSHOCK",
"PAD_L1",
"PAD_L2",
"PAD_L3",
"PAD_LEFT",
"PAD_R1",
"PAD_R2",
"PAD_R3",
"PAD_RIGHT",
"PAD_SELECT",
"PAD_SQUARE",
"PAD_START",
"PAD_TRIANGLE",
"PAD_UP",
"PAL",
"Pads",
"READ_ONLY",
"READ_WRITE",
"Render",
"SET",
"SYSTEM_UPDATE_COUNT",
"Screen",
"Secrman",
"Sif",
"Sound",
"System",
"Timer",
"USA_ROM_110",
"USA_ROM_120",
"USA_STANDARD",
"Z16",
"Z16S",
"Z24",
"Z32",
"_1080i",
"_480p",
"_576p",
"_720p"
]
}
29 changes: 29 additions & 0 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "Build",
"type": "shell",
"group":"build",
"windows": {
"command": "bash.exe -c \"make\""
},
"linux": {
"command": "make"
}
},
{
"label": "clean build",
"type": "shell",
"group":"build",
"windows": {
"command": "bash.exe -c \"make clean all\""
},
"linux": {
"command": "make clean all"
}
}
]
}
Loading

0 comments on commit 31ebfc0

Please sign in to comment.