diff options
author | Kartik Agaram <vc@akkartik.com> | 2019-07-23 23:55:30 -0700 |
---|---|---|
committer | Kartik Agaram <vc@akkartik.com> | 2019-07-24 00:25:03 -0700 |
commit | eea61cc12c1e020c3f273cb858edf02772fe78e8 (patch) | |
tree | b5b3f84c60da74436573fa8dc9528f4b5f392d7b | |
parent | f04fdc8e57e805466d4260b4dfdc1e0b185cf422 (diff) | |
download | mu-eea61cc12c1e020c3f273cb858edf02772fe78e8.tar.gz |
5461 - SubX is now self-hosting!
All extant SubX programs generate identical binaries using either the C++ or the self-hosted SubX translators.
-rwxr-xr-x | subx/apps/assort | bin | 34384 -> 34384 bytes | |||
-rwxr-xr-x | subx/apps/dquotes | bin | 40940 -> 40940 bytes | |||
-rwxr-xr-x | subx/apps/pack | bin | 47070 -> 47070 bytes | |||
-rw-r--r-- | subx/apps/subx-common.subx | 2 | ||||
-rwxr-xr-x | subx/apps/survey | bin | 43605 -> 43605 bytes | |||
-rwxr-xr-x | subx/apps/tests | bin | 33196 -> 33196 bytes |
6 files changed, 1 insertions, 1 deletions
diff --git a/subx/apps/assort b/subx/apps/assort index c0fc6873..70d7aaf3 100755 --- a/subx/apps/assort +++ b/subx/apps/assort Binary files differdiff --git a/subx/apps/dquotes b/subx/apps/dquotes index 6b88fbde..b7a4adfe 100755 --- a/subx/apps/dquotes +++ b/subx/apps/dquotes Binary files differdiff --git a/subx/apps/pack b/subx/apps/pack index fd29e9aa..720ba3ea 100755 --- a/subx/apps/pack +++ b/subx/apps/pack Binary files differdiff --git a/subx/apps/subx-common.subx b/subx/apps/subx-common.subx index baf247f2..abb223fb 100644 --- a/subx/apps/subx-common.subx +++ b/subx/apps/subx-common.subx @@ -13,7 +13,7 @@ Segment-size: # maximum size of input textual stream (spanning all segments) Input-size: - 0x80000/imm32/512KB + 0x100000/imm32/1MB # maximum size of the 'labels' table in survey.subx Max-labels: diff --git a/subx/apps/survey b/subx/apps/survey index 348e20f0..621efa5c 100755 --- a/subx/apps/survey +++ b/subx/apps/survey Binary files differdiff --git a/subx/apps/tests b/subx/apps/tests index 08e586e3..52af8441 100755 --- a/subx/apps/tests +++ b/subx/apps/tests Binary files differ |