use decimal instead of binary representation to save space

(cherry picked from commit 54ba73c177)
This commit is contained in:
2026-04-25 09:13:05 +02:00
parent 4e03aada20
commit cdc3a8e3a1
2 changed files with 13 additions and 13 deletions

View File

@@ -28,8 +28,8 @@ Usage example:
```sh
./build.ts > /path/to/the/game/schematics/architecture/Symfony/sandbox/main.asm
# script output can easily be piped to strip it off all comments, leading whitespace and empty lines:
./build.ts | sed 's/\s*;.*//' | sed 's/^\s*//' | sed '/^\d*$/d' > result.asm
# script output can easily be piped to strip it off all comments, leading whitespace, double spaces and empty lines:
./build.ts | sed -r 's/\s*;.*//' | sed -r 's/^\s+//' | sed -r 's/ +/ /' | sed -r '/^\s*$/d' > result.asm
```
The script is build over Deno's API, so you'll need to have a `deno` binary in your PATH to use it that way.