diff options
author | Emile <hanemile@protonmail.com> | 2020-02-23 16:35:59 +0100 |
---|---|---|
committer | Emile <hanemile@protonmail.com> | 2020-02-23 16:35:59 +0100 |
commit | f8660e0b62f819be7223c0d908f16cd34cc25fa1 (patch) | |
tree | 46038ee5e0fa4387148d0984ba4d98ff3a1fdf5a /bots/warrior0.asm | |
parent | 2889dea36fee0491ebf9df82bd2611f26b57f168 (diff) |
updated the bots
Diffstat (limited to 'bots/warrior0.asm')
-rw-r--r-- | bots/warrior0.asm | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/bots/warrior0.asm b/bots/warrior0.asm new file mode 100644 index 0000000..29e2271 --- /dev/null +++ b/bots/warrior0.asm @@ -0,0 +1,9 @@ +call label +label: + pop eax +loop: + sub eax, 10 + cmp [eax], 0 +je loop + mov [eax], 0 + jmp loop |