diff options
| author | krolxon <krolyxon@tutanota.com> | 2026-01-05 12:17:04 +0530 |
|---|---|---|
| committer | krolxon <krolyxon@tutanota.com> | 2026-01-05 12:17:04 +0530 |
| commit | 57bbca6cb271f7b5819c02aca9e54e3e3cba8a33 (patch) | |
| tree | 599e9b485d3147a2f6297f7720bd1961347a54d8 /examples/addition.asm | |
| parent | c3620252c7f0b1efadca500c6bb3d882d7dbd2ed (diff) | |
add LICENSE
Diffstat (limited to 'examples/addition.asm')
| -rw-r--r-- | examples/addition.asm | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/examples/addition.asm b/examples/addition.asm index 09ecba8..9914dee 100644 --- a/examples/addition.asm +++ b/examples/addition.asm @@ -1,4 +1,8 @@ +; move imm 10 to register A mov a, 10 +; move imm 5 to register B mov b, 5 +; Add a & B add a, b +; Halt hlt |
