diff options
| author | krolxon <krolyxon@tutanota.com> | 2026-01-05 13:15:01 +0530 |
|---|---|---|
| committer | krolxon <krolyxon@tutanota.com> | 2026-01-05 13:15:01 +0530 |
| commit | 4166b0e5430bd723e31c1198b8d940381aded499 (patch) | |
| tree | 4a919035d0225a7ed752e8692fc03fa8f62c1e25 /examples/mov.asm | |
| parent | 57bbca6cb271f7b5819c02aca9e54e3e3cba8a33 (diff) | |
add cmp instruction, add reg, reg, and reg, imm variations
Diffstat (limited to 'examples/mov.asm')
| -rw-r--r-- | examples/mov.asm | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/examples/mov.asm b/examples/mov.asm new file mode 100644 index 0000000..4aa3c04 --- /dev/null +++ b/examples/mov.asm @@ -0,0 +1,5 @@ +mov a, 10 +mov b, a +cmp a, b +cmp a, 10 +hlt |
