# Sieve of Eratosthenes # https://en.wikipedia.org/wiki/Sieve_of_Eratosthenes # YOUR-NAME-HERE, DD/MM/YYYY # Constants ARRAY_LEN = 1000 main: # TODO: add your code here li $v0, 0 jr $ra # return 0; .data prime: .byte 1:ARRAY_LEN # uint8_t prime[ARRAY_LEN] = {1, 1, ...};