diff options
author | Emile <git@emile.space> | 2023-07-16 01:40:53 +0200 |
---|---|---|
committer | Emile <git@emile.space> | 2023-07-16 01:40:53 +0200 |
commit | ecf63cba476057a71bf4b45d5ba5f83ef39f56b8 (patch) | |
tree | a003ed4aca701128b5c2576c640452b4ed3e188f /bots |
initial commit
Diffstat (limited to 'bots')
-rw-r--r-- | bots/warrior0.asm | 9 | ||||
-rw-r--r-- | bots/warrior1.asm | 9 |
2 files changed, 18 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 diff --git a/bots/warrior1.asm b/bots/warrior1.asm new file mode 100644 index 0000000..6627aae --- /dev/null +++ b/bots/warrior1.asm @@ -0,0 +1,9 @@ +call label +label: + pop eax +loop: + sub eax, 20 + cmp [eax], 0 +je loop + mov [eax], 0 + jmp loop |