; This is an assembly language program written for the Venus simulator
;

section .data

    ; Define integer values
int1 .word 10
int2 .word 5
sum  .doubleword 0
 
section .text

main:
   lw    t0, int2
                          # Now print the result out
   li    a1, to           # Value to print
   li    a0, 0
   ecall 

   li    a0, 11     
   li    a1, 10
   ecall                  # adds a newline

   ret

