-
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
HDD Support and dynamic installation tables (#4)
- Loading branch information
Showing
53 changed files
with
2,276 additions
and
643 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
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 | ||
} |
This file contains 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
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" | ||
] | ||
} |
This file contains 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
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" | ||
} | ||
} | ||
] | ||
} |
Oops, something went wrong.