diff options
Diffstat (limited to 'patches')
-rwxr-xr-x | patches/gollum.sh | 4 | ||||
-rw-r--r-- | patches/patches/042_pointers4.patch | 2 | ||||
-rw-r--r-- | patches/patches/043_pointers5.patch | 2 | ||||
-rw-r--r-- | patches/patches/047_methods.patch | 6 | ||||
-rw-r--r-- | patches/patches/064_builtins.patch | 4 |
5 files changed, 12 insertions, 6 deletions
diff --git a/patches/gollum.sh b/patches/gollum.sh index 495aa44..74f7626 100755 --- a/patches/gollum.sh +++ b/patches/gollum.sh @@ -22,7 +22,9 @@ p=patches/patches/$f.patch if [ ! -f $b ]; then echo "No $f! We hates it!"; exit 1; fi if [ ! -f $a ]; then echo "No $a! Where is it? Where is the answer, precious?"; exit; fi -echo "Hissss!\tbefore: '$b'\n\t after: '$a'\n\t patch: '$p'\n" +echo "Hissss! before: '$b'" +echo " after: '$a'" +echo " patch: '$p'" diff $b $a > $p diff --git a/patches/patches/042_pointers4.patch b/patches/patches/042_pointers4.patch index 29ca2d0..8e21b81 100644 --- a/patches/patches/042_pointers4.patch +++ b/patches/patches/042_pointers4.patch @@ -1,4 +1,4 @@ -31c31 +40c40 < ??? = 5; // fix me! --- > x.* = 5; // fix me! diff --git a/patches/patches/043_pointers5.patch b/patches/patches/043_pointers5.patch index 8a73551..ac6a8ca 100644 --- a/patches/patches/043_pointers5.patch +++ b/patches/patches/043_pointers5.patch @@ -1,4 +1,4 @@ -60c60 +71c71 < printCharacter(???); --- > printCharacter(&glorp); diff --git a/patches/patches/047_methods.patch b/patches/patches/047_methods.patch index 81e733b..edd9db1 100644 --- a/patches/patches/047_methods.patch +++ b/patches/patches/047_methods.patch @@ -1,4 +1,4 @@ -87c87 -< ???.zap(heat_ray_strength); +92c92 +< ???.zap(???); --- -> alien.zap(heat_ray_strength); +> heat_ray.zap(alien); diff --git a/patches/patches/064_builtins.patch b/patches/patches/064_builtins.patch index 644128b..06fa735 100644 --- a/patches/patches/064_builtins.patch +++ b/patches/patches/064_builtins.patch @@ -1,4 +1,8 @@ 72c72 +< const expected_result: u8 = ???; +--- +> const expected_result: u8 = 0b00010010; +88c88 < const tupni: u8 = @bitReverse(input); --- > const tupni: u8 = @bitReverse(u8, input); |