Error: Runtime exception … store address not aligned on word boundary
问题 I am trying to print binary digits of any integer input and store them in the array starting at the last index. Then I am trying to print it from the array. .data prompt: .asciiz "Enter an int: " errorLarge: .asciiz "Error Value to large CANNOT be held in 16 bit" errorSmall: .asciiz "Error Value is to small CANNOT be held in 16 bits" # 64bytes =512 bits created (1 int =4 bytes):: (16 int =64 bytes) array: .space 64 newLine: .asciiz "\n" .globl main .text main: li $v0,4 la $a0,prompt syscall