diff options
| author | Dario Bartussek <[email protected]> | 2021-04-14 02:35:20 +0200 |
|---|---|---|
| committer | Dario Bartussek <[email protected]> | 2021-04-14 02:35:20 +0200 |
| commit | 81412dc51ad1bbc3aa22a10ff8254d62056af266 (patch) | |
| tree | c0adeadc7398fc0e716b903d9985cef0f1dc5d17 | |
| parent | Added ROM header generation assembly (diff) | |
| download | rust_3ds-81412dc51ad1bbc3aa22a10ff8254d62056af266.tar.xz rust_3ds-81412dc51ad1bbc3aa22a10ff8254d62056af266.zip | |
Added package.sh to create a 3DS executable
| -rw-r--r-- | .gitignore | 3 | ||||
| -rw-r--r-- | icon.png | bin | 0 -> 1234 bytes | |||
| -rw-r--r-- | package.sh | 4 |
3 files changed, 7 insertions, 0 deletions
@@ -6,3 +6,6 @@ Cargo.lock rust_3ds.map rust_3ds.s + +rust_3ds.smdh +rust_3ds.3dsx diff --git a/icon.png b/icon.png Binary files differnew file mode 100644 index 0000000..fd78bf5 --- /dev/null +++ b/icon.png diff --git a/package.sh b/package.sh new file mode 100644 index 0000000..0446af3 --- /dev/null +++ b/package.sh @@ -0,0 +1,4 @@ +. compile.sh + +smdhtool --create "rust_3ds" "Description" "Author" "./icon.png" rust_3ds.smdh +3dsxtool ./target/3ds/debug/rust_3ds rust_3ds.3dsx --smdh=rust_3ds.smdh |