├── .github └── workflows │ └── compilation.yml ├── .gitignore ├── Makefile ├── Readme.md └── main.c /.github/workflows/compilation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjtrujy/helloWorldPS2/HEAD/.github/workflows/compilation.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjtrujy/helloWorldPS2/HEAD/.gitignore -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjtrujy/helloWorldPS2/HEAD/Makefile -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjtrujy/helloWorldPS2/HEAD/Readme.md -------------------------------------------------------------------------------- /main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjtrujy/helloWorldPS2/HEAD/main.c --------------------------------------------------------------------------------