Implemented the rest of the unsigned integer operations

This commit is contained in:
cannoli-fruit 2026-07-24 03:12:34 -04:00
commit 1ade055e09
5 changed files with 46 additions and 4 deletions

10
tests/mul.asm Normal file
View file

@ -0,0 +1,10 @@
include "fvm.inc"
org 0x4000000000000000
MovI64 r95, UART_TX
MovI64 r2, 2
MovI64 r3, 4
MulR64 r2, r3
MovI64 r4, 48 ; ascii for 0
AddR64 r2, r4
St8 r2, r95