mirror of https://git.suyu.dev/suyu/suyu
Compare commits
23 Commits
74a3bd53e0
...
cb06742375
Author | SHA1 | Date |
---|---|---|
niansa | cb06742375 | |
Crimson Hawk | 3e8dc06867 | |
zqpvr | 3bfadff6a4 | |
Crimson Hawk | 6f0e60b8d3 | |
Crimson Hawk | 3ed2cc91fa | |
blitzingeagle | d5df2ace8e | |
MattTheTekie | 099df26bf6 | |
Crimson-Hawk | e4fc3840c1 | |
MattTheTekie | 59275a47e8 | |
MattTheTekie | 923db982f1 | |
MattTheTekie | 036a7e5ace | |
MattTheTekie | a4ffb72144 | |
MattTheTekie | a3c9ddb9c8 | |
MattTheTekie | a882e3aad2 | |
MattTheTekie | 5c00d6e943 | |
MattTheTekie | 357bd403b0 | |
MattTheTekie | e29d50c295 | |
MattTheTekie | b5ca0beb34 | |
MattTheTekie | 915331dc91 | |
MattTheTekie | 1c9d3b7fe9 | |
MattTheTekie | 36e984c2f0 | |
MattTheTekie | 72015483da | |
niansa | 88b76c1f59 |
|
@ -0,0 +1,45 @@
|
||||||
|
# This file is a template, and might need editing before it works on your project.
|
||||||
|
# This is a sample GitLab CI/CD configuration file that should run without any modifications.
|
||||||
|
# It demonstrates a basic 3 stage CI/CD pipeline. Instead of real tests or scripts,
|
||||||
|
# it uses echo commands to simulate the pipeline execution.
|
||||||
|
#
|
||||||
|
# A pipeline is composed of independent jobs that run scripts, grouped into stages.
|
||||||
|
# Stages run in sequential order, but jobs within stages run in parallel.
|
||||||
|
#
|
||||||
|
# For more information, see: https://docs.gitlab.com/ee/ci/yaml/index.html#stages
|
||||||
|
#
|
||||||
|
# You can copy and paste this template into a new `.gitlab-ci.yml` file.
|
||||||
|
# You should not add this template to an existing `.gitlab-ci.yml` file by using the `include:` keyword.
|
||||||
|
#
|
||||||
|
# To contribute improvements to CI/CD templates, please follow the Development guide at:
|
||||||
|
# https://docs.gitlab.com/ee/development/cicd/templates.html
|
||||||
|
# This specific template is located at:
|
||||||
|
# https://gitlab.com/gitlab-org/gitlab/-/blob/master/lib/gitlab/ci/templates/Getting-Started.gitlab-ci.yml
|
||||||
|
|
||||||
|
stages: # List of stages for jobs, and their order of execution
|
||||||
|
- build
|
||||||
|
|
||||||
|
build-ubuntu: # This job runs in the build stage, which runs first.
|
||||||
|
stage: build
|
||||||
|
image: ubuntu:latest # Maybe replace with image with more required dependencies
|
||||||
|
before_script:
|
||||||
|
- apt update --yes
|
||||||
|
- apt install --yes cmake gcc g++ git
|
||||||
|
script:
|
||||||
|
- echo "Compiling the code..."
|
||||||
|
- git submodule update --init --recursive
|
||||||
|
- ls -la
|
||||||
|
# TODO: Add build instructions for linux
|
||||||
|
- echo "Compile complete."
|
||||||
|
|
||||||
|
build-win:
|
||||||
|
stage: build
|
||||||
|
tags:
|
||||||
|
- shared-windows
|
||||||
|
- windows
|
||||||
|
- windows-1809
|
||||||
|
script:
|
||||||
|
- echo "Compiling the code..."
|
||||||
|
- dir
|
||||||
|
# TODO: Add build instructions for windows
|
||||||
|
- echo "Compile complete."
|
31
README.md
31
README.md
|
@ -5,15 +5,14 @@ SPDX-License-Identifier: GPL v3
|
||||||
|
|
||||||
**Note**: We do not support or condone piracy in any form. In order to use Suyu, you'll need keys from your real Switch system, and games which you have legally obtained and paid for. We do not intend to make money or profit from this project.
|
**Note**: We do not support or condone piracy in any form. In order to use Suyu, you'll need keys from your real Switch system, and games which you have legally obtained and paid for. We do not intend to make money or profit from this project.
|
||||||
|
|
||||||
We are in great need of developers, join our Discord server at <a href="https://discord.gg/2gQRBp44KT">https://discord.gg/2gQRBp44KT</a>.
|
We are in great need of developers. Please join our Discord server below if you can help out with the project.
|
||||||
|
|
||||||
This repo is based on Yuzu EA 4176. Please contribute if you can!
|
This repo is based on Yuzu EA 4176. Please contribute if you can!
|
||||||
|
|
||||||
<hr />
|
<hr />
|
||||||
|
|
||||||
<h1 align="center">
|
<h1 align="center">
|
||||||
<br>
|
<br>
|
||||||
<a href=""><img src="https://gitlab.com/suyu-emu/suyu/-/raw/master/dist/readme/suyu__Logo-Pill.svg" alt="suyu" height="128"></a>
|
<a href="https://gitlab.com/suyu-emu/suyu"><img src="dist/readme/suyu__Logo-Pill.svg" alt="suyu" height="128"></a>
|
||||||
<br>
|
<br>
|
||||||
<b>suyu</b>
|
<b>suyu</b>
|
||||||
<br>
|
<br>
|
||||||
|
@ -25,16 +24,10 @@ It is written in C++ with portability in mind, and we actively maintain builds f
|
||||||
</h4>
|
</h4>
|
||||||
|
|
||||||
<p align="center">
|
<p align="center">
|
||||||
<a href="https://dev.azure.com/suyu-emu/suyu/">
|
<a href="#compatibility">Compatibility</a> |
|
||||||
<img src="https://dev.azure.com/suyu-emu/suyu/_apis/build/status/suyu%20mainline?branchName=master"
|
|
||||||
alt="Azure Mainline CI Build Status">
|
|
||||||
</a>
|
|
||||||
</p>
|
|
||||||
|
|
||||||
<p align="center">
|
|
||||||
<a href="https://gitlab.com/suyu-emu/suyu/-/wikis/Compatibility">Compatibility</a> |
|
|
||||||
<a href="#development">Development</a> |
|
<a href="#development">Development</a> |
|
||||||
<a href="#building">Building</a> |
|
<a href="#building">Building</a> |
|
||||||
|
<a href="https://gitlab.com/suyu-emu/suyu/-/pipelines">Pipelines</a>
|
||||||
<a href="#downloads">Downloads</a> |
|
<a href="#downloads">Downloads</a> |
|
||||||
<a href="#support">Support</a> |
|
<a href="#support">Support</a> |
|
||||||
<a href="#license">License</a>
|
<a href="#license">License</a>
|
||||||
|
@ -48,27 +41,21 @@ We are trying to get the builds working. We are in need of developers. Join our
|
||||||
|
|
||||||
## Compatibility
|
## Compatibility
|
||||||
|
|
||||||
W.I.P.
|
|
||||||
|
|
||||||
The emulator is capable of running most commercial games at full speed, provided you meet the [necessary hardware requirements](https://suyu-emu.org/help/quickstart/#hardware-requirements).
|
The emulator is capable of running most commercial games at full speed, provided you meet the [necessary hardware requirements](https://suyu-emu.org/help/quickstart/#hardware-requirements).
|
||||||
|
|
||||||
For a full list of games suyu supports, please visit our [Compatibility page](https://gitlab.com/suyu-emu/suyu/-/wikis/Compatibility).
|
For a full list of games suyu supports, please visit our [Compatibility page](https://gitlab.com/suyu-emu/suyu/-/wikis/Compatibility).
|
||||||
|
|
||||||
Check out our [website](https://suyu-emu.org/) for the latest news on exciting features, monthly progress reports, and more!
|
Check out our [website](https://suyu.dev) for the latest news on exciting features, monthly progress reports, and more!
|
||||||
|
|
||||||
## Development
|
## Development
|
||||||
|
|
||||||
W.I.P.
|
|
||||||
|
|
||||||
This project is completely free and open source, this project is made possible by many people who share the same interest.
|
This project is completely free and open source, this project is made possible by many people who share the same interest.
|
||||||
|
|
||||||
Most of the development happens on GitHub. For development discussion, please join us on [Discord](https://discord.gg/2gQRBp44KT).
|
Most of the development happens on GitLab. For development discussion, please join us on [Discord](https://discord.gg/2gQRBp44KT).
|
||||||
|
|
||||||
If you want to contribute, please take a look at the [Contributor's Guide](https://gitlab.com/suyu-emu/suyu/-/wikis/Contributing) and [Developer Information](https://gitlab.com/suyu-emu/suyu/-/wikis/Developer-Information).
|
If you want to contribute, please take a look at the [Contributor's Guide](https://gitlab.com/suyu-emu/suyu/-/wikis/Contributing) and [Developer Information](https://gitlab.com/suyu-emu/suyu/-/wikis/Developer-Information).
|
||||||
You can also contact any of the developers on Discord in order to know about the current state of the emulator.
|
You can also contact any of the developers on Discord in order to know about the current state of the emulator.
|
||||||
|
|
||||||
If you want to contribute to the user interface translation project, please check out the [suyu project on transifex](https://www.transifex.com/suyu-emulator/suyu). We centralize translation work there, and periodically upstream translations.
|
|
||||||
|
|
||||||
## Downloads
|
## Downloads
|
||||||
|
|
||||||
* __Windows__: [Legacy Artifacts](https://github.com/pineappleea/pineapple-src/releases)
|
* __Windows__: [Legacy Artifacts](https://github.com/pineappleea/pineapple-src/releases)
|
||||||
|
@ -76,14 +63,14 @@ If you want to contribute to the user interface translation project, please chec
|
||||||
|
|
||||||
## Building
|
## Building
|
||||||
|
|
||||||
* __Windows__: W.I.P.
|
* __Windows__: [Wiki page](https://gitlab.com/suyu-emu/suyu/-/wikis/Building-for-Windows)
|
||||||
* __Linux__: W.I.P.
|
* __Linux__: [Wiki page](https://gitlab.com/suyu-emu/suyu/-/wikis/Building-for-Linux)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
## Support
|
## Support
|
||||||
|
|
||||||
This project is completely free and open source, this project is made possible by many people who share the same interest. Please join the Discord server to contribute.
|
This project is completely free and open source, this project is made possible by many people who share the same interest. Please join the Discord server [here](https://discord.gg/2gQRBp44KT) to contribute.
|
||||||
|
|
||||||
|
|
||||||
## License
|
## License
|
||||||
|
|
|
@ -1,2 +0,0 @@
|
||||||
WIP
|
|
||||||
- MattTheTekie
|
|
|
@ -76,6 +76,8 @@ FileType AppLoader_NSP::IdentifyType(const FileSys::VirtualFile& nsp_file) {
|
||||||
}
|
}
|
||||||
|
|
||||||
AppLoader_NSP::LoadResult AppLoader_NSP::Load(Kernel::KProcess& process, Core::System& system) {
|
AppLoader_NSP::LoadResult AppLoader_NSP::Load(Kernel::KProcess& process, Core::System& system) {
|
||||||
|
return {ResultStatus::ErrorLoadingNSO, {}};
|
||||||
|
|
||||||
if (is_loaded) {
|
if (is_loaded) {
|
||||||
return {ResultStatus::ErrorAlreadyLoaded, {}};
|
return {ResultStatus::ErrorAlreadyLoaded, {}};
|
||||||
}
|
}
|
||||||
|
|
|
@ -55,6 +55,8 @@ FileType AppLoader_XCI::IdentifyType(const FileSys::VirtualFile& xci_file) {
|
||||||
}
|
}
|
||||||
|
|
||||||
AppLoader_XCI::LoadResult AppLoader_XCI::Load(Kernel::KProcess& process, Core::System& system) {
|
AppLoader_XCI::LoadResult AppLoader_XCI::Load(Kernel::KProcess& process, Core::System& system) {
|
||||||
|
return {ResultStatus::ErrorBadXCIHeader, {}};
|
||||||
|
|
||||||
if (is_loaded) {
|
if (is_loaded) {
|
||||||
return {ResultStatus::ErrorAlreadyLoaded, {}};
|
return {ResultStatus::ErrorAlreadyLoaded, {}};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue