Skip to content

Commit

Permalink
(FREE) (NO HUMAN VERIFICATION) CLASH OF CLANS GEMS GENERATOR 2024 WOR…
Browse files Browse the repository at this point in the history
…KING 2024
  • Loading branch information
cetio committed Apr 21, 2024
1 parent 9ae8fbe commit 389b66d
Show file tree
Hide file tree
Showing 3 changed files with 329 additions and 108 deletions.
26 changes: 26 additions & 0 deletions source/fern/assembler.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
```
int foo = 3;
while (foo-- > 0)
return += foo * 10;
return ^^= 2;
return -= foo;
```

```
mov foo, 3
xor return, return
loop:
sub foo, 1
mov foo_temp, foo
mul foo_temp, 10
add return, foo_temp
cmp foo, 0
jg loop
imul return, return
sub return, foo
ret
```
108 changes: 0 additions & 108 deletions source/fern/intermediary.d

This file was deleted.

Loading

0 comments on commit 389b66d

Please sign in to comment.