-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
69 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
#define macro MAIN() = takes(0) returns(0) { | ||
0x0 | ||
0b111 | ||
wow | ||
wow: | ||
INNER(0b11111001, wow) | ||
} | ||
|
||
#define macro INNER(a, dest) = takes(0) returns(0) { | ||
<dest> jump | ||
<a> | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
#define macro MAIN() = takes(0) returns(0) { | ||
__codeoffset(VERY_NICE) | ||
__codeoffset(MAIN) | ||
skibidi | ||
} | ||
|
||
#define macro VERY_NICE() = { | ||
skibidi | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
#include "./Recursive.huff" | ||
|
||
#define macro MAIN() = takes(0) returns(0) { | ||
// wow | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
#define macro MAIN(a, skbidi) = takes(0) returns(0) { | ||
WOW(0x1, 0x2) | ||
WOW(0x1) | ||
WOW(0x1, 0x2, 0x3) | ||
} | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
#define macro MAIN() = takes(0) returns(0) { | ||
__codeoffset(NICE) | ||
} | ||
|
||
#define macro NICE() = { | ||
stop | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
#define macro CONSTRUCTOR() = { | ||
__codesize(MAIN) | ||
dup1 | ||
__codeoffset(MAIN) | ||
0x0 | ||
codecopy | ||
0x0 | ||
return | ||
} | ||
|
||
#define macro MAIN() = takes(0) returns(0) { | ||
0x1 0x1 add | ||
msize mstore | ||
msize 0x0 return | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
#define macro MAIN() = takes(0) returns(0) { | ||
INNER() | ||
target: | ||
} | ||
|
||
|
||
#define macro INNER() = { | ||
target | ||
|
||
0x1 0x1 | ||
add | ||
0x2 | ||
eq | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
#define function hello((uint256 hello,string)[]) | ||
|
||
#define macro MAIN() = takes(0) returns(0) { | ||
0x1 | ||
|
||
} |