.import ../../src/matmul.s
.import ../../src/utils.s
.import ../../src/dot.s
# static values for testing
.data
m0: .word 1 2 3 4 5 6 7 8 9
m1: .word 1 2 3 4 5 6 7 8 9
d: .word 0 0 0 0 0 0 0 0 0 # allocate static space for output
.text
main:
# Load addresses of input matrices (which are in static memory), and set their dimensions
# Call matrix multiply, m0 * m1
# Print the output (use print_int_array in utils.s)
# Exit the program
jal exit