mirror of
https://gitlab.com/ryandwyer/perfect-dark
synced 2026-05-27 16:12:26 -04:00
23b6bd2643
* All segments are now extracted from the base ROM; the base ROM is no longer a compile time dependency * ROM segments are now positioned relatively to each rather than with hard coded addresses * Piracy checksums are calculated during build
11 lines
197 B
Bash
Executable File
11 lines
197 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
echo -e "\n.data\n.incbin \"$1\"\n.balign 0x10" > build/$ROMID/file.s
|
|
|
|
$TOOLCHAIN-as -mabi=32 -mips2 -I src/include -EB -o "$2" build/$ROMID/file.s
|
|
|
|
rm -f build/$ROMID/file.s
|
|
|