Here is an example program from a new assmebly language I made up that computes primes:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 | SET R1 2 // Starting number to check for prime start_find_primes: JMP is_prime // Control will return after executing is_prime with R1 as input and R2 containing the result ready_prime: SET R7 1 EQ R2 R7 // Check if R2 is 1 (prime) JF increment // If not prime, skip storing and increment the number // Store prime number in memory and increment count STORE R1 R8 // Store prime number at address pointed by R8 INC R8 // Increment prime count // Check if 100 primes are found SET R7 100 EQ R8 R7 JF increment // If not 100 primes found yet, continue finding JMP end // If 100 primes found, end program increment: INC R1 // Increment number to check for prime JMP start_find_primes // Check next number is_prime: SET R2 1 // Assume number is prime initially SET R3 2 // Start divisor from 2 start_loop: // Label to start the loop // Check if we have exceeded the square root of R1 MUL R4 R3 R3 // R4 = R3 * R3 GT R4 R1 // Set flag if R4 > R1 JT is_prime_end // If not exceeded, continue; else, end loop MOD R6 R1 R3 // R6 = R1 % R3 SET R7 0 EQ R7 R6 // Check if R6 is 0 JT not_prime // If yes, number is not prime INC R3 // Increment divisor JMP start_loop // Repeat loop not_prime: SET R2 0 // Set result to 0 (not prime) is_prime_end: JMP ready_prime end: |
Here is an example program from a new assmebly language I made up that computes primes:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 | SET R1 2 // Starting number to check for prime start_find_primes: JMP is_prime // Control will return after executing is_prime with R1 as input and R2 containing the result ready_prime: SET R7 1 EQ R2 R7 // Check if R2 is 1 (prime) JF increment // If not prime, skip storing and increment the number // Store prime number in memory and increment count STORE R1 R8 // Store prime number at address pointed by R8 INC R8 // Increment prime count // Check if 100 primes are found SET R7 100 EQ R8 R7 JF increment // If not 100 primes found yet, continue finding JMP end // If 100 primes found, end program increment: INC R1 // Increment number to check for prime JMP start_find_primes // Check next number is_prime: SET R2 1 // Assume number is prime initially SET R3 2 // Start divisor from 2 start_loop: // Label to start the loop // Check if we have exceeded the square root of R1 MUL R4 R3 R3 // R4 = R3 * R3 GT R4 R1 // Set flag if R4 > R1 JT is_prime_end // If not exceeded, continue; else, end loop MOD R6 R1 R3 // R6 = R1 % R3 SET R7 0 EQ R7 R6 // Check if R6 is 0 JT not_prime // If yes, number is not prime INC R3 // Increment divisor JMP start_loop // Repeat loop not_prime: SET R2 0 // Set result to 0 (not prime) is_prime_end: JMP ready_prime end: |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 | def evaluate(program): registers = {reg: 0 for reg in ['R1', 'R2', 'R3', 'R4', 'R5', 'R6', 'R7', 'R8']} memory = {} lines = program.strip().split('\n') pc = 0 while pc < len(lines): line = lines[pc].strip() if not line or line.startswith("//"): pc += 1 continue parts = line.split() instruction = parts[0] if instruction == "SET": reg = parts[1] val = int(parts[2]) registers[reg] = val elif instruction == "INC": reg = parts[1] registers[reg] += 1 elif instruction == "STORE": val_reg = parts[1] addr_reg = parts[2] memory[registers[addr_reg]] = registers[val_reg] elif instruction == "EQ": reg1 = parts[1] reg2 = parts[2] registers["FLAG"] = 1 if registers[reg1] == registers[reg2] else 0 elif instruction == "GT": reg1 = parts[1] reg2 = parts[2] registers["FLAG"] = 1 if registers[reg1] > registers[reg2] else 0 elif instruction == "MOD": res_reg = parts[1] reg1 = parts[2] reg2 = parts[3] registers[res_reg] = registers[reg1] % registers[reg2] elif instruction == "MUL": res_reg = parts[1] reg1 = parts[2] reg2 = parts[3] registers[res_reg] = registers[reg1] * registers[reg2] elif instruction == "JT": label = parts[1] if registers["FLAG"] == 1: pc = next((i for i, l in enumerate(lines) if l.strip() == label + ":"), pc) continue # Skip incrementing pc elif instruction == "JF": label = parts[1] if registers["FLAG"] == 0: pc = next((i for i, l in enumerate(lines) if l.strip() == label + ":"), pc) continue elif instruction == "JMP": label = parts[1] pc = next((i for i, l in enumerate(lines) if l.strip() == label + ":"), pc) continue # Skip incrementing pc pc += 1 return [memory[i] for i in sorted(memory.keys())] |
I extracted the following code from that output:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 | def evaluate(program): registers = {reg: 0 for reg in ['R1', 'R2', 'R3', 'R4', 'R5', 'R6', 'R7', 'R8']} memory = {} lines = program.strip().split('\n') pc = 0 while pc < len(lines): line = lines[pc].strip() if not line or line.startswith("//"): pc += 1 continue parts = line.split() instruction = parts[0] if instruction == "SET": reg = parts[1] val = int(parts[2]) registers[reg] = val elif instruction == "INC": reg = parts[1] registers[reg] += 1 elif instruction == "STORE": val_reg = parts[1] addr_reg = parts[2] memory[registers[addr_reg]] = registers[val_reg] elif instruction == "EQ": reg1 = parts[1] reg2 = parts[2] registers["FLAG"] = 1 if registers[reg1] == registers[reg2] else 0 elif instruction == "GT": reg1 = parts[1] reg2 = parts[2] registers["FLAG"] = 1 if registers[reg1] > registers[reg2] else 0 elif instruction == "MOD": res_reg = parts[1] reg1 = parts[2] reg2 = parts[3] registers[res_reg] = registers[reg1] % registers[reg2] elif instruction == "MUL": res_reg = parts[1] reg1 = parts[2] reg2 = parts[3] registers[res_reg] = registers[reg1] * registers[reg2] elif instruction == "JT": label = parts[1] if registers["FLAG"] == 1: pc = next((i for i, l in enumerate(lines) if l.strip() == label + ":"), pc) continue # Skip incrementing pc elif instruction == "JF": label = parts[1] if registers["FLAG"] == 0: pc = next((i for i, l in enumerate(lines) if l.strip() == label + ":"), pc) continue elif instruction == "JMP": label = parts[1] pc = next((i for i, l in enumerate(lines) if l.strip() == label + ":"), pc) continue # Skip incrementing pc pc += 1 return [memory[i] for i in sorted(memory.keys())] |
Running the following program:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 | def evaluate(program): registers = {reg: 0 for reg in ['R1', 'R2', 'R3', 'R4', 'R5', 'R6', 'R7', 'R8']} memory = {} lines = program.strip().split('\n') pc = 0 while pc < len(lines): line = lines[pc].strip() if not line or line.startswith("//"): pc += 1 continue parts = line.split() instruction = parts[0] if instruction == "SET": reg = parts[1] val = int(parts[2]) registers[reg] = val elif instruction == "INC": reg = parts[1] registers[reg] += 1 elif instruction == "STORE": val_reg = parts[1] addr_reg = parts[2] memory[registers[addr_reg]] = registers[val_reg] elif instruction == "EQ": reg1 = parts[1] reg2 = parts[2] registers["FLAG"] = 1 if registers[reg1] == registers[reg2] else 0 elif instruction == "GT": reg1 = parts[1] reg2 = parts[2] registers["FLAG"] = 1 if registers[reg1] > registers[reg2] else 0 elif instruction == "MOD": res_reg = parts[1] reg1 = parts[2] reg2 = parts[3] registers[res_reg] = registers[reg1] % registers[reg2] elif instruction == "MUL": res_reg = parts[1] reg1 = parts[2] reg2 = parts[3] registers[res_reg] = registers[reg1] * registers[reg2] elif instruction == "JT": label = parts[1] if registers["FLAG"] == 1: pc = next((i for i, l in enumerate(lines) if l.strip() == label + ":"), pc) continue # Skip incrementing pc elif instruction == "JF": label = parts[1] if registers["FLAG"] == 0: pc = next((i for i, l in enumerate(lines) if l.strip() == label + ":"), pc) continue elif instruction == "JMP": label = parts[1] pc = next((i for i, l in enumerate(lines) if l.strip() == label + ":"), pc) continue # Skip incrementing pc pc += 1 return [memory[i] for i in sorted(memory.keys())] answer = evaluate(""" SET R1 0 SET R2 1 loop: MUL R3 R2 R2 STORE R3 R1 INC R1 INC R2 SET R3 20 EQ R1 R3 JF loop """)[:10] expected = [1, 4, 9, 16, 25, 36, 49, 64, 81, 100] assert answer == expected, f'Wrong answer; got {answer} instead of {expected}' answer = evaluate(""" SET R1 2 // Starting number to check for prime start_find_primes: JMP is_prime // Control will return after executing is_prime with R1 as input and R2 containing the result ready_prime: SET R7 1 EQ R2 R7 // Check if R2 is 1 (prime) JF increment // If not prime, skip storing and increment the number // Store prime number in memory and increment count STORE R1 R8 // Store prime number at address pointed by R8 INC R8 // Increment prime count // Check if 100 primes are found SET R7 100 EQ R8 R7 JF increment // If not 100 primes found yet, continue finding JMP end // If 100 primes found, end program increment: INC R1 // Increment number to check for prime JMP start_find_primes // Check next number is_prime: SET R2 1 // Assume number is prime initially SET R3 2 // Start divisor from 2 start_loop: // Label to start the loop // Check if we have exceeded the square root of R1 MUL R4 R3 R3 // R4 = R3 * R3 GT R4 R1 // Set flag if R4 > R1 JT is_prime_end // If not exceeded, continue; else, end loop MOD R6 R1 R3 // R6 = R1 % R3 SET R7 0 EQ R7 R6 // Check if R6 is 0 JT not_prime // If yes, number is not prime INC R3 // Increment divisor JMP start_loop // Repeat loop not_prime: SET R2 0 // Set result to 0 (not prime) is_prime_end: JMP ready_prime end: """)[:10] expected = [2, 3, 5, 7, 11, 13, 17, 19, 23, 29] assert answer == expected, f'Wrong answer; got {answer} instead of {expected}' print('All tests passed') |
Timeout: function took too long to complete
Testing if the previous output contains the string All tests passed
: False
Here is an example program from a new assmebly language I made up that computes primes:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 | SET R1 2 // Starting number to check for prime start_find_primes: JMP is_prime // Control will return after executing is_prime with R1 as input and R2 containing the result ready_prime: SET R7 1 EQ R2 R7 // Check if R2 is 1 (prime) JF increment // If not prime, skip storing and increment the number // Store prime number in memory and increment count STORE R1 R8 // Store prime number at address pointed by R8 INC R8 // Increment prime count // Check if 100 primes are found SET R7 100 EQ R8 R7 JF increment // If not 100 primes found yet, continue finding JMP end // If 100 primes found, end program increment: INC R1 // Increment number to check for prime JMP start_find_primes // Check next number is_prime: SET R2 1 // Assume number is prime initially SET R3 2 // Start divisor from 2 start_loop: // Label to start the loop // Check if we have exceeded the square root of R1 MUL R4 R3 R3 // R4 = R3 * R3 GT R4 R1 // Set flag if R4 > R1 JT is_prime_end // If not exceeded, continue; else, end loop MOD R6 R1 R3 // R6 = R1 % R3 SET R7 0 EQ R7 R6 // Check if R6 is 0 JT not_prime // If yes, number is not prime INC R3 // Increment divisor JMP start_loop // Repeat loop not_prime: SET R2 0 // Set result to 0 (not prime) is_prime_end: JMP ready_prime end: |
Here is an example program from a new assmebly language I made up that computes primes:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 | SET R1 2 // Starting number to check for prime start_find_primes: JMP is_prime // Control will return after executing is_prime with R1 as input and R2 containing the result ready_prime: SET R7 1 EQ R2 R7 // Check if R2 is 1 (prime) JF increment // If not prime, skip storing and increment the number // Store prime number in memory and increment count STORE R1 R8 // Store prime number at address pointed by R8 INC R8 // Increment prime count // Check if 100 primes are found SET R7 100 EQ R8 R7 JF increment // If not 100 primes found yet, continue finding JMP end // If 100 primes found, end program increment: INC R1 // Increment number to check for prime JMP start_find_primes // Check next number is_prime: SET R2 1 // Assume number is prime initially SET R3 2 // Start divisor from 2 start_loop: // Label to start the loop // Check if we have exceeded the square root of R1 MUL R4 R3 R3 // R4 = R3 * R3 GT R4 R1 // Set flag if R4 > R1 JT is_prime_end // If not exceeded, continue; else, end loop MOD R6 R1 R3 // R6 = R1 % R3 SET R7 0 EQ R7 R6 // Check if R6 is 0 JT not_prime // If yes, number is not prime INC R3 // Increment divisor JMP start_loop // Repeat loop not_prime: SET R2 0 // Set result to 0 (not prime) is_prime_end: JMP ready_prime end: |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 | def evaluate(program): registers = {reg: 0 for reg in ['R1', 'R2', 'R3', 'R4', 'R5', 'R6', 'R7', 'R8']} memory = [] lines = program.splitlines() pc = 0 while pc < len(lines): line = lines[pc].strip() if not line or line.startswith('//'): pc += 1 continue parts = line.split() instruction = parts[0] if instruction == 'SET': registers[parts[1]] = int(parts[2]) elif instruction == 'INC': registers[parts[1]] += 1 elif instruction == 'STORE': address = registers[parts[2]] while len(memory) <= address: memory.append(0) # Extend memory if needed memory[address] = registers[parts[1]] elif instruction == 'JMP': label = parts[1] for i in range(len(lines)): if lines[i].strip().startswith(label + ':'): pc = i break continue # Skip incrementing pc after a jump elif instruction == 'JT': label = parts[1] if registers['FLAG']: for i in range(len(lines)): if lines[i].strip().startswith(label + ':'): pc = i break continue elif instruction == 'JF': label = parts[1] if not registers['FLAG']: for i in range(len(lines)): if lines[i].strip().startswith(label + ':'): pc = i break continue elif instruction == 'MUL': registers[parts[1]] = registers[parts[2]] * registers[parts[3]] elif instruction == 'MOD': registers[parts[1]] = registers[parts[2]] % registers[parts[3]] elif instruction == 'EQ': registers['FLAG'] = registers[parts[1]] == registers[parts[2]] elif instruction == 'GT': registers['FLAG'] = registers[parts[1]] > registers[parts[2]] pc += 1 return memory program = """ SET R1 2 // Starting number to check for prime start_find_primes: JMP is_prime // Control will return after executing is_prime with R1 as input and R2 containing the result ready_prime: SET R7 1 EQ R2 R7 // Check if R2 is 1 (prime) JF increment // If not prime, skip storing and increment the number // Store prime number in memory and increment count STORE R1 R8 // Store prime number at address pointed by R8 INC R8 // Increment prime count // Check if 100 primes are found SET R7 100 EQ R8 R7 JF increment // If not 100 primes found yet, continue finding JMP end // If 100 primes found, end program increment: INC R1 // Increment number to check for prime JMP start_find_primes // Check next number is_prime: SET R2 1 // Assume number is prime initially SET R3 2 // Start divisor from 2 start_loop: // Label to start the loop // Check if we have exceeded the square root of R1 MUL R4 R3 R3 // R4 = R3 * R3 GT R4 R1 // Set flag if R4 > R1 JT is_prime_end // If not exceeded, continue; else, end loop MOD R6 R1 R3 // R6 = R1 % R3 SET R7 0 EQ R7 R6 // Check if R6 is 0 JT not_prime // If yes, number is not prime INC R3 // Increment divisor JMP start_loop // Repeat loop not_prime: SET R2 0 // Set result to 0 (not prime) is_prime_end: JMP ready_prime end: """ result = evaluate(program) print(result) |
I extracted the following code from that output:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 | def evaluate(program): registers = {reg: 0 for reg in ['R1', 'R2', 'R3', 'R4', 'R5', 'R6', 'R7', 'R8']} memory = [] lines = program.splitlines() pc = 0 while pc < len(lines): line = lines[pc].strip() if not line or line.startswith('//'): pc += 1 continue parts = line.split() instruction = parts[0] if instruction == 'SET': registers[parts[1]] = int(parts[2]) elif instruction == 'INC': registers[parts[1]] += 1 elif instruction == 'STORE': address = registers[parts[2]] while len(memory) <= address: memory.append(0) # Extend memory if needed memory[address] = registers[parts[1]] elif instruction == 'JMP': label = parts[1] for i in range(len(lines)): if lines[i].strip().startswith(label + ':'): pc = i break continue # Skip incrementing pc after a jump elif instruction == 'JT': label = parts[1] if registers['FLAG']: for i in range(len(lines)): if lines[i].strip().startswith(label + ':'): pc = i break continue elif instruction == 'JF': label = parts[1] if not registers['FLAG']: for i in range(len(lines)): if lines[i].strip().startswith(label + ':'): pc = i break continue elif instruction == 'MUL': registers[parts[1]] = registers[parts[2]] * registers[parts[3]] elif instruction == 'MOD': registers[parts[1]] = registers[parts[2]] % registers[parts[3]] elif instruction == 'EQ': registers['FLAG'] = registers[parts[1]] == registers[parts[2]] elif instruction == 'GT': registers['FLAG'] = registers[parts[1]] > registers[parts[2]] pc += 1 return memory program = """ SET R1 2 // Starting number to check for prime start_find_primes: JMP is_prime // Control will return after executing is_prime with R1 as input and R2 containing the result ready_prime: SET R7 1 EQ R2 R7 // Check if R2 is 1 (prime) JF increment // If not prime, skip storing and increment the number // Store prime number in memory and increment count STORE R1 R8 // Store prime number at address pointed by R8 INC R8 // Increment prime count // Check if 100 primes are found SET R7 100 EQ R8 R7 JF increment // If not 100 primes found yet, continue finding JMP end // If 100 primes found, end program increment: INC R1 // Increment number to check for prime JMP start_find_primes // Check next number is_prime: SET R2 1 // Assume number is prime initially SET R3 2 // Start divisor from 2 start_loop: // Label to start the loop // Check if we have exceeded the square root of R1 MUL R4 R3 R3 // R4 = R3 * R3 GT R4 R1 // Set flag if R4 > R1 JT is_prime_end // If not exceeded, continue; else, end loop MOD R6 R1 R3 // R6 = R1 % R3 SET R7 0 EQ R7 R6 // Check if R6 is 0 JT not_prime // If yes, number is not prime INC R3 // Increment divisor JMP start_loop // Repeat loop not_prime: SET R2 0 // Set result to 0 (not prime) is_prime_end: JMP ready_prime end: """ result = evaluate(program) print(result) |
Running the following program:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 | def evaluate(program): registers = {reg: 0 for reg in ['R1', 'R2', 'R3', 'R4', 'R5', 'R6', 'R7', 'R8']} memory = [] lines = program.splitlines() pc = 0 while pc < len(lines): line = lines[pc].strip() if not line or line.startswith('//'): pc += 1 continue parts = line.split() instruction = parts[0] if instruction == 'SET': registers[parts[1]] = int(parts[2]) elif instruction == 'INC': registers[parts[1]] += 1 elif instruction == 'STORE': address = registers[parts[2]] while len(memory) <= address: memory.append(0) # Extend memory if needed memory[address] = registers[parts[1]] elif instruction == 'JMP': label = parts[1] for i in range(len(lines)): if lines[i].strip().startswith(label + ':'): pc = i break continue # Skip incrementing pc after a jump elif instruction == 'JT': label = parts[1] if registers['FLAG']: for i in range(len(lines)): if lines[i].strip().startswith(label + ':'): pc = i break continue elif instruction == 'JF': label = parts[1] if not registers['FLAG']: for i in range(len(lines)): if lines[i].strip().startswith(label + ':'): pc = i break continue elif instruction == 'MUL': registers[parts[1]] = registers[parts[2]] * registers[parts[3]] elif instruction == 'MOD': registers[parts[1]] = registers[parts[2]] % registers[parts[3]] elif instruction == 'EQ': registers['FLAG'] = registers[parts[1]] == registers[parts[2]] elif instruction == 'GT': registers['FLAG'] = registers[parts[1]] > registers[parts[2]] pc += 1 return memory program = """ SET R1 2 // Starting number to check for prime start_find_primes: JMP is_prime // Control will return after executing is_prime with R1 as input and R2 containing the result ready_prime: SET R7 1 EQ R2 R7 // Check if R2 is 1 (prime) JF increment // If not prime, skip storing and increment the number // Store prime number in memory and increment count STORE R1 R8 // Store prime number at address pointed by R8 INC R8 // Increment prime count // Check if 100 primes are found SET R7 100 EQ R8 R7 JF increment // If not 100 primes found yet, continue finding JMP end // If 100 primes found, end program increment: INC R1 // Increment number to check for prime JMP start_find_primes // Check next number is_prime: SET R2 1 // Assume number is prime initially SET R3 2 // Start divisor from 2 start_loop: // Label to start the loop // Check if we have exceeded the square root of R1 MUL R4 R3 R3 // R4 = R3 * R3 GT R4 R1 // Set flag if R4 > R1 JT is_prime_end // If not exceeded, continue; else, end loop MOD R6 R1 R3 // R6 = R1 % R3 SET R7 0 EQ R7 R6 // Check if R6 is 0 JT not_prime // If yes, number is not prime INC R3 // Increment divisor JMP start_loop // Repeat loop not_prime: SET R2 0 // Set result to 0 (not prime) is_prime_end: JMP ready_prime end: """ result = evaluate(program) print(result) answer = evaluate(""" SET R1 0 SET R2 1 loop: MUL R3 R2 R2 STORE R3 R1 INC R1 INC R2 SET R3 20 EQ R1 R3 JF loop """)[:10] expected = [1, 4, 9, 16, 25, 36, 49, 64, 81, 100] assert answer == expected, f'Wrong answer; got {answer} instead of {expected}' answer = evaluate(""" SET R1 2 // Starting number to check for prime start_find_primes: JMP is_prime // Control will return after executing is_prime with R1 as input and R2 containing the result ready_prime: SET R7 1 EQ R2 R7 // Check if R2 is 1 (prime) JF increment // If not prime, skip storing and increment the number // Store prime number in memory and increment count STORE R1 R8 // Store prime number at address pointed by R8 INC R8 // Increment prime count // Check if 100 primes are found SET R7 100 EQ R8 R7 JF increment // If not 100 primes found yet, continue finding JMP end // If 100 primes found, end program increment: INC R1 // Increment number to check for prime JMP start_find_primes // Check next number is_prime: SET R2 1 // Assume number is prime initially SET R3 2 // Start divisor from 2 start_loop: // Label to start the loop // Check if we have exceeded the square root of R1 MUL R4 R3 R3 // R4 = R3 * R3 GT R4 R1 // Set flag if R4 > R1 JT is_prime_end // If not exceeded, continue; else, end loop MOD R6 R1 R3 // R6 = R1 % R3 SET R7 0 EQ R7 R6 // Check if R6 is 0 JT not_prime // If yes, number is not prime INC R3 // Increment divisor JMP start_loop // Repeat loop not_prime: SET R2 0 // Set result to 0 (not prime) is_prime_end: JMP ready_prime end: """)[:10] expected = [2, 3, 5, 7, 11, 13, 17, 19, 23, 29] assert answer == expected, f'Wrong answer; got {answer} instead of {expected}' print('All tests passed') |
[2, 3, 5, 7, 11, 13, 17, 19, 23, 29, 31, 37, 41, 43, 47, 53, 59, 61, 67, 71, 73, 79, 83, 89, 97, 101, 103, 107, 109, 113, 127, 131, 137, 139, 149, 151, 157, 163, 167, 173, 179, 181, 191, 193, 197, 199, 211, 223, 227, 229, 233, 239, 241, 251, 257, 263, 269, 271, 277, 281, 283, 293, 307, 311, 313, 317, 331, 337, 347, 349, 353, 359, 367, 373, 379, 383, 389, 397, 401, 409, 419, 421, 431, 433, 439, 443, 449, 457, 461, 463, 467, 479, 487, 491, 499, 503, 509, 521, 523, 541]
All tests passed
Testing if the previous output contains the string All tests passed
: True
Here is an example program from a new assmebly language I made up that computes primes:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 | SET R1 2 // Starting number to check for prime start_find_primes: JMP is_prime // Control will return after executing is_prime with R1 as input and R2 containing the result ready_prime: SET R7 1 EQ R2 R7 // Check if R2 is 1 (prime) JF increment // If not prime, skip storing and increment the number // Store prime number in memory and increment count STORE R1 R8 // Store prime number at address pointed by R8 INC R8 // Increment prime count // Check if 100 primes are found SET R7 100 EQ R8 R7 JF increment // If not 100 primes found yet, continue finding JMP end // If 100 primes found, end program increment: INC R1 // Increment number to check for prime JMP start_find_primes // Check next number is_prime: SET R2 1 // Assume number is prime initially SET R3 2 // Start divisor from 2 start_loop: // Label to start the loop // Check if we have exceeded the square root of R1 MUL R4 R3 R3 // R4 = R3 * R3 GT R4 R1 // Set flag if R4 > R1 JT is_prime_end // If not exceeded, continue; else, end loop MOD R6 R1 R3 // R6 = R1 % R3 SET R7 0 EQ R7 R6 // Check if R6 is 0 JT not_prime // If yes, number is not prime INC R3 // Increment divisor JMP start_loop // Repeat loop not_prime: SET R2 0 // Set result to 0 (not prime) is_prime_end: JMP ready_prime end: |
Here is an example program from a new assmebly language I made up that computes primes:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 | SET R1 2 // Starting number to check for prime start_find_primes: JMP is_prime // Control will return after executing is_prime with R1 as input and R2 containing the result ready_prime: SET R7 1 EQ R2 R7 // Check if R2 is 1 (prime) JF increment // If not prime, skip storing and increment the number // Store prime number in memory and increment count STORE R1 R8 // Store prime number at address pointed by R8 INC R8 // Increment prime count // Check if 100 primes are found SET R7 100 EQ R8 R7 JF increment // If not 100 primes found yet, continue finding JMP end // If 100 primes found, end program increment: INC R1 // Increment number to check for prime JMP start_find_primes // Check next number is_prime: SET R2 1 // Assume number is prime initially SET R3 2 // Start divisor from 2 start_loop: // Label to start the loop // Check if we have exceeded the square root of R1 MUL R4 R3 R3 // R4 = R3 * R3 GT R4 R1 // Set flag if R4 > R1 JT is_prime_end // If not exceeded, continue; else, end loop MOD R6 R1 R3 // R6 = R1 % R3 SET R7 0 EQ R7 R6 // Check if R6 is 0 JT not_prime // If yes, number is not prime INC R3 // Increment divisor JMP start_loop // Repeat loop not_prime: SET R2 0 // Set result to 0 (not prime) is_prime_end: JMP ready_prime end: |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 | def evaluate(program): memory = {} registers = {reg: 0 for reg in ["R1", "R2", "R3", "R4", "R5", "R6", "R7", "R8"]} instructions = program.strip().split('\n') pc = 0 while pc < len(instructions): instruction = instructions[pc].strip() parts = instruction.split() if not instruction or instruction.startswith("//"): pc += 1 continue opcode = parts[0] if opcode == "SET": reg = parts[1] val = int(parts[2]) registers[reg] = val elif opcode == "INC": reg = parts[1] registers[reg] += 1 elif opcode == "STORE": val_reg = parts[1] addr_reg = parts[2] memory[registers[addr_reg]] = registers[val_reg] elif opcode == "EQ": reg1 = parts[1] reg2 = parts[2] registers["FLAG"] = 1 if registers[reg1] == registers[reg2] else 0 elif opcode == "GT": reg1 = parts[1] reg2 = parts[2] registers["FLAG"] = 1 if registers[reg1] > registers[reg2] else 0 elif opcode == "MOD": res_reg = parts[1] reg1 = parts[2] reg2 = parts[3] registers[res_reg] = registers[reg1] % registers[reg2] elif opcode == "MUL": res_reg = parts[1] reg1 = parts[2] reg2 = parts[3] registers[res_reg] = registers[reg1] * registers[reg2] elif opcode == "JT": label = parts[1] if registers["FLAG"] == 1: for i in range(len(instructions)): if instructions[i].startswith(label + ":"): pc = i break else: raise Exception(f"Label {label} not found") continue elif opcode == "JF": label = parts[1] if registers["FLAG"] == 0: for i in range(len(instructions)): if instructions[i].startswith(label + ":"): pc = i break else: raise Exception(f"Label {label} not found") continue elif opcode == "JMP": label = parts[1] for i in range(len(instructions)): if instructions[i].startswith(label + ":"): pc = i break else: raise Exception(f"Label {label} not found") continue pc += 1 return sorted(memory.values()) |
I extracted the following code from that output:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 | def evaluate(program): memory = {} registers = {reg: 0 for reg in ["R1", "R2", "R3", "R4", "R5", "R6", "R7", "R8"]} instructions = program.strip().split('\n') pc = 0 while pc < len(instructions): instruction = instructions[pc].strip() parts = instruction.split() if not instruction or instruction.startswith("//"): pc += 1 continue opcode = parts[0] if opcode == "SET": reg = parts[1] val = int(parts[2]) registers[reg] = val elif opcode == "INC": reg = parts[1] registers[reg] += 1 elif opcode == "STORE": val_reg = parts[1] addr_reg = parts[2] memory[registers[addr_reg]] = registers[val_reg] elif opcode == "EQ": reg1 = parts[1] reg2 = parts[2] registers["FLAG"] = 1 if registers[reg1] == registers[reg2] else 0 elif opcode == "GT": reg1 = parts[1] reg2 = parts[2] registers["FLAG"] = 1 if registers[reg1] > registers[reg2] else 0 elif opcode == "MOD": res_reg = parts[1] reg1 = parts[2] reg2 = parts[3] registers[res_reg] = registers[reg1] % registers[reg2] elif opcode == "MUL": res_reg = parts[1] reg1 = parts[2] reg2 = parts[3] registers[res_reg] = registers[reg1] * registers[reg2] elif opcode == "JT": label = parts[1] if registers["FLAG"] == 1: for i in range(len(instructions)): if instructions[i].startswith(label + ":"): pc = i break else: raise Exception(f"Label {label} not found") continue elif opcode == "JF": label = parts[1] if registers["FLAG"] == 0: for i in range(len(instructions)): if instructions[i].startswith(label + ":"): pc = i break else: raise Exception(f"Label {label} not found") continue elif opcode == "JMP": label = parts[1] for i in range(len(instructions)): if instructions[i].startswith(label + ":"): pc = i break else: raise Exception(f"Label {label} not found") continue pc += 1 return sorted(memory.values()) |
Running the following program:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 | def evaluate(program): memory = {} registers = {reg: 0 for reg in ["R1", "R2", "R3", "R4", "R5", "R6", "R7", "R8"]} instructions = program.strip().split('\n') pc = 0 while pc < len(instructions): instruction = instructions[pc].strip() parts = instruction.split() if not instruction or instruction.startswith("//"): pc += 1 continue opcode = parts[0] if opcode == "SET": reg = parts[1] val = int(parts[2]) registers[reg] = val elif opcode == "INC": reg = parts[1] registers[reg] += 1 elif opcode == "STORE": val_reg = parts[1] addr_reg = parts[2] memory[registers[addr_reg]] = registers[val_reg] elif opcode == "EQ": reg1 = parts[1] reg2 = parts[2] registers["FLAG"] = 1 if registers[reg1] == registers[reg2] else 0 elif opcode == "GT": reg1 = parts[1] reg2 = parts[2] registers["FLAG"] = 1 if registers[reg1] > registers[reg2] else 0 elif opcode == "MOD": res_reg = parts[1] reg1 = parts[2] reg2 = parts[3] registers[res_reg] = registers[reg1] % registers[reg2] elif opcode == "MUL": res_reg = parts[1] reg1 = parts[2] reg2 = parts[3] registers[res_reg] = registers[reg1] * registers[reg2] elif opcode == "JT": label = parts[1] if registers["FLAG"] == 1: for i in range(len(instructions)): if instructions[i].startswith(label + ":"): pc = i break else: raise Exception(f"Label {label} not found") continue elif opcode == "JF": label = parts[1] if registers["FLAG"] == 0: for i in range(len(instructions)): if instructions[i].startswith(label + ":"): pc = i break else: raise Exception(f"Label {label} not found") continue elif opcode == "JMP": label = parts[1] for i in range(len(instructions)): if instructions[i].startswith(label + ":"): pc = i break else: raise Exception(f"Label {label} not found") continue pc += 1 return sorted(memory.values()) answer = evaluate(""" SET R1 0 SET R2 1 loop: MUL R3 R2 R2 STORE R3 R1 INC R1 INC R2 SET R3 20 EQ R1 R3 JF loop """)[:10] expected = [1, 4, 9, 16, 25, 36, 49, 64, 81, 100] assert answer == expected, f'Wrong answer; got {answer} instead of {expected}' answer = evaluate(""" SET R1 2 // Starting number to check for prime start_find_primes: JMP is_prime // Control will return after executing is_prime with R1 as input and R2 containing the result ready_prime: SET R7 1 EQ R2 R7 // Check if R2 is 1 (prime) JF increment // If not prime, skip storing and increment the number // Store prime number in memory and increment count STORE R1 R8 // Store prime number at address pointed by R8 INC R8 // Increment prime count // Check if 100 primes are found SET R7 100 EQ R8 R7 JF increment // If not 100 primes found yet, continue finding JMP end // If 100 primes found, end program increment: INC R1 // Increment number to check for prime JMP start_find_primes // Check next number is_prime: SET R2 1 // Assume number is prime initially SET R3 2 // Start divisor from 2 start_loop: // Label to start the loop // Check if we have exceeded the square root of R1 MUL R4 R3 R3 // R4 = R3 * R3 GT R4 R1 // Set flag if R4 > R1 JT is_prime_end // If not exceeded, continue; else, end loop MOD R6 R1 R3 // R6 = R1 % R3 SET R7 0 EQ R7 R6 // Check if R6 is 0 JT not_prime // If yes, number is not prime INC R3 // Increment divisor JMP start_loop // Repeat loop not_prime: SET R2 0 // Set result to 0 (not prime) is_prime_end: JMP ready_prime end: """)[:10] expected = [2, 3, 5, 7, 11, 13, 17, 19, 23, 29] assert answer == expected, f'Wrong answer; got {answer} instead of {expected}' print('All tests passed') |
All tests passed
Testing if the previous output contains the string All tests passed
: True
Here is an example program from a new assmebly language I made up that computes primes:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 | SET R1 2 // Starting number to check for prime start_find_primes: JMP is_prime // Control will return after executing is_prime with R1 as input and R2 containing the result ready_prime: SET R7 1 EQ R2 R7 // Check if R2 is 1 (prime) JF increment // If not prime, skip storing and increment the number // Store prime number in memory and increment count STORE R1 R8 // Store prime number at address pointed by R8 INC R8 // Increment prime count // Check if 100 primes are found SET R7 100 EQ R8 R7 JF increment // If not 100 primes found yet, continue finding JMP end // If 100 primes found, end program increment: INC R1 // Increment number to check for prime JMP start_find_primes // Check next number is_prime: SET R2 1 // Assume number is prime initially SET R3 2 // Start divisor from 2 start_loop: // Label to start the loop // Check if we have exceeded the square root of R1 MUL R4 R3 R3 // R4 = R3 * R3 GT R4 R1 // Set flag if R4 > R1 JT is_prime_end // If not exceeded, continue; else, end loop MOD R6 R1 R3 // R6 = R1 % R3 SET R7 0 EQ R7 R6 // Check if R6 is 0 JT not_prime // If yes, number is not prime INC R3 // Increment divisor JMP start_loop // Repeat loop not_prime: SET R2 0 // Set result to 0 (not prime) is_prime_end: JMP ready_prime end: |
Here is an example program from a new assmebly language I made up that computes primes:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 | SET R1 2 // Starting number to check for prime start_find_primes: JMP is_prime // Control will return after executing is_prime with R1 as input and R2 containing the result ready_prime: SET R7 1 EQ R2 R7 // Check if R2 is 1 (prime) JF increment // If not prime, skip storing and increment the number // Store prime number in memory and increment count STORE R1 R8 // Store prime number at address pointed by R8 INC R8 // Increment prime count // Check if 100 primes are found SET R7 100 EQ R8 R7 JF increment // If not 100 primes found yet, continue finding JMP end // If 100 primes found, end program increment: INC R1 // Increment number to check for prime JMP start_find_primes // Check next number is_prime: SET R2 1 // Assume number is prime initially SET R3 2 // Start divisor from 2 start_loop: // Label to start the loop // Check if we have exceeded the square root of R1 MUL R4 R3 R3 // R4 = R3 * R3 GT R4 R1 // Set flag if R4 > R1 JT is_prime_end // If not exceeded, continue; else, end loop MOD R6 R1 R3 // R6 = R1 % R3 SET R7 0 EQ R7 R6 // Check if R6 is 0 JT not_prime // If yes, number is not prime INC R3 // Increment divisor JMP start_loop // Repeat loop not_prime: SET R2 0 // Set result to 0 (not prime) is_prime_end: JMP ready_prime end: |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 | def evaluate(program): registers = {reg: 0 for reg in ["R1", "R2", "R3", "R4", "R5", "R6", "R7", "R8"]} memory = {} lines = program.strip().split('\n') pc = 0 while pc < len(lines): line = lines[pc].strip() if not line or line.startswith("//"): pc += 1 continue parts = line.split() instruction = parts[0] if instruction == "SET": reg = parts[1] val = int(parts[2]) registers[reg] = val elif instruction == "INC": reg = parts[1] registers[reg] += 1 elif instruction == "STORE": val_reg = parts[1] addr_reg = parts[2] memory[registers[addr_reg]] = registers[val_reg] elif instruction == "MUL": dest_reg = parts[1] op1_reg = parts[2] op2_reg = parts[3] registers[dest_reg] = registers[op1_reg] * registers[op2_reg] elif instruction == "MOD": dest_reg = parts[1] op1_reg = parts[2] op2_reg = parts[3] registers[dest_reg] = registers[op1_reg] % registers[op2_reg] elif instruction == "EQ": op1_reg = parts[1] op2_reg = parts[2] registers["FLAG"] = 1 if registers[op1_reg] == registers[op2_reg] else 0 elif instruction == "GT": op1_reg = parts[1] op2_reg = parts[2] registers["FLAG"] = 1 if registers[op1_reg] > registers[op2_reg] else 0 elif instruction == "JT": label = parts[1] if registers["FLAG"] == 1: pc = next((i for i, l in enumerate(lines) if l.strip() == label + ":"), pc) continue # Skip incrementing PC elif instruction == "JF": label = parts[1] if registers["FLAG"] == 0: pc = next((i for i, l in enumerate(lines) if l.strip() == label + ":"), pc) continue # Skip incrementing PC elif instruction == "JMP": label = parts[1] pc = next((i for i, l in enumerate(lines) if l.strip() == label + ":"), pc) continue # Skip incrementing PC else: raise ValueError(f"Invalid instruction: {instruction}") pc += 1 return sorted(memory.values()) |
I extracted the following code from that output:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 | def evaluate(program): registers = {reg: 0 for reg in ["R1", "R2", "R3", "R4", "R5", "R6", "R7", "R8"]} memory = {} lines = program.strip().split('\n') pc = 0 while pc < len(lines): line = lines[pc].strip() if not line or line.startswith("//"): pc += 1 continue parts = line.split() instruction = parts[0] if instruction == "SET": reg = parts[1] val = int(parts[2]) registers[reg] = val elif instruction == "INC": reg = parts[1] registers[reg] += 1 elif instruction == "STORE": val_reg = parts[1] addr_reg = parts[2] memory[registers[addr_reg]] = registers[val_reg] elif instruction == "MUL": dest_reg = parts[1] op1_reg = parts[2] op2_reg = parts[3] registers[dest_reg] = registers[op1_reg] * registers[op2_reg] elif instruction == "MOD": dest_reg = parts[1] op1_reg = parts[2] op2_reg = parts[3] registers[dest_reg] = registers[op1_reg] % registers[op2_reg] elif instruction == "EQ": op1_reg = parts[1] op2_reg = parts[2] registers["FLAG"] = 1 if registers[op1_reg] == registers[op2_reg] else 0 elif instruction == "GT": op1_reg = parts[1] op2_reg = parts[2] registers["FLAG"] = 1 if registers[op1_reg] > registers[op2_reg] else 0 elif instruction == "JT": label = parts[1] if registers["FLAG"] == 1: pc = next((i for i, l in enumerate(lines) if l.strip() == label + ":"), pc) continue # Skip incrementing PC elif instruction == "JF": label = parts[1] if registers["FLAG"] == 0: pc = next((i for i, l in enumerate(lines) if l.strip() == label + ":"), pc) continue # Skip incrementing PC elif instruction == "JMP": label = parts[1] pc = next((i for i, l in enumerate(lines) if l.strip() == label + ":"), pc) continue # Skip incrementing PC else: raise ValueError(f"Invalid instruction: {instruction}") pc += 1 return sorted(memory.values()) |
Running the following program:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 | def evaluate(program): registers = {reg: 0 for reg in ["R1", "R2", "R3", "R4", "R5", "R6", "R7", "R8"]} memory = {} lines = program.strip().split('\n') pc = 0 while pc < len(lines): line = lines[pc].strip() if not line or line.startswith("//"): pc += 1 continue parts = line.split() instruction = parts[0] if instruction == "SET": reg = parts[1] val = int(parts[2]) registers[reg] = val elif instruction == "INC": reg = parts[1] registers[reg] += 1 elif instruction == "STORE": val_reg = parts[1] addr_reg = parts[2] memory[registers[addr_reg]] = registers[val_reg] elif instruction == "MUL": dest_reg = parts[1] op1_reg = parts[2] op2_reg = parts[3] registers[dest_reg] = registers[op1_reg] * registers[op2_reg] elif instruction == "MOD": dest_reg = parts[1] op1_reg = parts[2] op2_reg = parts[3] registers[dest_reg] = registers[op1_reg] % registers[op2_reg] elif instruction == "EQ": op1_reg = parts[1] op2_reg = parts[2] registers["FLAG"] = 1 if registers[op1_reg] == registers[op2_reg] else 0 elif instruction == "GT": op1_reg = parts[1] op2_reg = parts[2] registers["FLAG"] = 1 if registers[op1_reg] > registers[op2_reg] else 0 elif instruction == "JT": label = parts[1] if registers["FLAG"] == 1: pc = next((i for i, l in enumerate(lines) if l.strip() == label + ":"), pc) continue # Skip incrementing PC elif instruction == "JF": label = parts[1] if registers["FLAG"] == 0: pc = next((i for i, l in enumerate(lines) if l.strip() == label + ":"), pc) continue # Skip incrementing PC elif instruction == "JMP": label = parts[1] pc = next((i for i, l in enumerate(lines) if l.strip() == label + ":"), pc) continue # Skip incrementing PC else: raise ValueError(f"Invalid instruction: {instruction}") pc += 1 return sorted(memory.values()) answer = evaluate(""" SET R1 0 SET R2 1 loop: MUL R3 R2 R2 STORE R3 R1 INC R1 INC R2 SET R3 20 EQ R1 R3 JF loop """)[:10] expected = [1, 4, 9, 16, 25, 36, 49, 64, 81, 100] assert answer == expected, f'Wrong answer; got {answer} instead of {expected}' answer = evaluate(""" SET R1 2 // Starting number to check for prime start_find_primes: JMP is_prime // Control will return after executing is_prime with R1 as input and R2 containing the result ready_prime: SET R7 1 EQ R2 R7 // Check if R2 is 1 (prime) JF increment // If not prime, skip storing and increment the number // Store prime number in memory and increment count STORE R1 R8 // Store prime number at address pointed by R8 INC R8 // Increment prime count // Check if 100 primes are found SET R7 100 EQ R8 R7 JF increment // If not 100 primes found yet, continue finding JMP end // If 100 primes found, end program increment: INC R1 // Increment number to check for prime JMP start_find_primes // Check next number is_prime: SET R2 1 // Assume number is prime initially SET R3 2 // Start divisor from 2 start_loop: // Label to start the loop // Check if we have exceeded the square root of R1 MUL R4 R3 R3 // R4 = R3 * R3 GT R4 R1 // Set flag if R4 > R1 JT is_prime_end // If not exceeded, continue; else, end loop MOD R6 R1 R3 // R6 = R1 % R3 SET R7 0 EQ R7 R6 // Check if R6 is 0 JT not_prime // If yes, number is not prime INC R3 // Increment divisor JMP start_loop // Repeat loop not_prime: SET R2 0 // Set result to 0 (not prime) is_prime_end: JMP ready_prime end: """)[:10] expected = [2, 3, 5, 7, 11, 13, 17, 19, 23, 29] assert answer == expected, f'Wrong answer; got {answer} instead of {expected}' print('All tests passed') |
Traceback (most recent call last):
File "/usr/src/app/main.py", line 72, in <module>
answer = evaluate("""
^^^^^^^^^^^^
File "/usr/src/app/main.py", line 62, in evaluate
raise ValueError(f"Invalid instruction: {instruction}")
ValueError: Invalid instruction: loop:
Testing if the previous output contains the string All tests passed
: False
Here is an example program from a new assmebly language I made up that computes primes:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 | SET R1 2 // Starting number to check for prime start_find_primes: JMP is_prime // Control will return after executing is_prime with R1 as input and R2 containing the result ready_prime: SET R7 1 EQ R2 R7 // Check if R2 is 1 (prime) JF increment // If not prime, skip storing and increment the number // Store prime number in memory and increment count STORE R1 R8 // Store prime number at address pointed by R8 INC R8 // Increment prime count // Check if 100 primes are found SET R7 100 EQ R8 R7 JF increment // If not 100 primes found yet, continue finding JMP end // If 100 primes found, end program increment: INC R1 // Increment number to check for prime JMP start_find_primes // Check next number is_prime: SET R2 1 // Assume number is prime initially SET R3 2 // Start divisor from 2 start_loop: // Label to start the loop // Check if we have exceeded the square root of R1 MUL R4 R3 R3 // R4 = R3 * R3 GT R4 R1 // Set flag if R4 > R1 JT is_prime_end // If not exceeded, continue; else, end loop MOD R6 R1 R3 // R6 = R1 % R3 SET R7 0 EQ R7 R6 // Check if R6 is 0 JT not_prime // If yes, number is not prime INC R3 // Increment divisor JMP start_loop // Repeat loop not_prime: SET R2 0 // Set result to 0 (not prime) is_prime_end: JMP ready_prime end: |
Here is an example program from a new assmebly language I made up that computes primes:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 | SET R1 2 // Starting number to check for prime start_find_primes: JMP is_prime // Control will return after executing is_prime with R1 as input and R2 containing the result ready_prime: SET R7 1 EQ R2 R7 // Check if R2 is 1 (prime) JF increment // If not prime, skip storing and increment the number // Store prime number in memory and increment count STORE R1 R8 // Store prime number at address pointed by R8 INC R8 // Increment prime count // Check if 100 primes are found SET R7 100 EQ R8 R7 JF increment // If not 100 primes found yet, continue finding JMP end // If 100 primes found, end program increment: INC R1 // Increment number to check for prime JMP start_find_primes // Check next number is_prime: SET R2 1 // Assume number is prime initially SET R3 2 // Start divisor from 2 start_loop: // Label to start the loop // Check if we have exceeded the square root of R1 MUL R4 R3 R3 // R4 = R3 * R3 GT R4 R1 // Set flag if R4 > R1 JT is_prime_end // If not exceeded, continue; else, end loop MOD R6 R1 R3 // R6 = R1 % R3 SET R7 0 EQ R7 R6 // Check if R6 is 0 JT not_prime // If yes, number is not prime INC R3 // Increment divisor JMP start_loop // Repeat loop not_prime: SET R2 0 // Set result to 0 (not prime) is_prime_end: JMP ready_prime end: |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 | def evaluate(program): registers = {reg: 0 for reg in ['R1', 'R2', 'R3', 'R4', 'R5', 'R6', 'R7', 'R8']} memory = {} lines = program.strip().split('\n') pc = 0 while pc < len(lines): line = lines[pc].strip() if not line or line.startswith("//"): pc += 1 continue parts = line.split() instruction = parts[0] if instruction == "SET": registers[parts[1]] = int(parts[2]) elif instruction == "INC": registers[parts[1]] += 1 elif instruction == "STORE": memory[registers[parts[2]]] = registers[parts[1]] elif instruction == "MUL": registers[parts[1]] = registers[parts[2]] * registers[parts[3]] elif instruction == "MOD": registers[parts[1]] = registers[parts[2]] % registers[parts[3]] elif instruction == "EQ": registers["FLAG"] = 1 if registers[parts[1]] == registers[parts[2]] else 0 elif instruction == "GT": registers["FLAG"] = 1 if registers[parts[1]] > registers[parts[2]] else 0 elif instruction == "JT": if registers["FLAG"] == 1: pc = lines.index(parts[1] + ":") continue elif instruction == "JF": if registers["FLAG"] == 0: pc = lines.index(parts[1] + ":") continue elif instruction == "JMP": pc = lines.index(parts[1] + ":") continue pc += 1 return list(memory.values()) # Example usage with the provided program: program = """ SET R1 2 // Starting number to check for prime start_find_primes: JMP is_prime // Control will return after executing is_prime with R1 as input and R2 containing the result ready_prime: SET R7 1 EQ R2 R7 // Check if R2 is 1 (prime) JF increment // If not prime, skip storing and increment the number // Store prime number in memory and increment count STORE R1 R8 // Store prime number at address pointed by R8 INC R8 // Increment prime count // Check if 100 primes are found SET R7 100 EQ R8 R7 JF increment // If not 100 primes found yet, continue finding JMP end // If 100 primes found, end program increment: INC R1 // Increment number to check for prime JMP start_find_primes // Check next number is_prime: SET R2 1 // Assume number is prime initially SET R3 2 // Start divisor from 2 start_loop: // Label to start the loop // Check if we have exceeded the square root of R1 MUL R4 R3 R3 // R4 = R3 * R3 GT R4 R1 // Set flag if R4 > R1 JT is_prime_end // If not exceeded, continue; else, end loop MOD R6 R1 R3 // R6 = R1 % R3 SET R7 0 EQ R7 R6 // Check if R6 is 0 JT not_prime // If yes, number is not prime INC R3 // Increment divisor JMP start_loop // Repeat loop not_prime: SET R2 0 // Set result to 0 (not prime) is_prime_end: JMP ready_prime end: """ primes = evaluate(program) print(primes) # Output: [2, 3, 5, 7, 11, 13, 17, 19, ...] (first 100 primes) |
I extracted the following code from that output:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 | def evaluate(program): registers = {reg: 0 for reg in ['R1', 'R2', 'R3', 'R4', 'R5', 'R6', 'R7', 'R8']} memory = {} lines = program.strip().split('\n') pc = 0 while pc < len(lines): line = lines[pc].strip() if not line or line.startswith("//"): pc += 1 continue parts = line.split() instruction = parts[0] if instruction == "SET": registers[parts[1]] = int(parts[2]) elif instruction == "INC": registers[parts[1]] += 1 elif instruction == "STORE": memory[registers[parts[2]]] = registers[parts[1]] elif instruction == "MUL": registers[parts[1]] = registers[parts[2]] * registers[parts[3]] elif instruction == "MOD": registers[parts[1]] = registers[parts[2]] % registers[parts[3]] elif instruction == "EQ": registers["FLAG"] = 1 if registers[parts[1]] == registers[parts[2]] else 0 elif instruction == "GT": registers["FLAG"] = 1 if registers[parts[1]] > registers[parts[2]] else 0 elif instruction == "JT": if registers["FLAG"] == 1: pc = lines.index(parts[1] + ":") continue elif instruction == "JF": if registers["FLAG"] == 0: pc = lines.index(parts[1] + ":") continue elif instruction == "JMP": pc = lines.index(parts[1] + ":") continue pc += 1 return list(memory.values()) # Example usage with the provided program: program = """ SET R1 2 // Starting number to check for prime start_find_primes: JMP is_prime // Control will return after executing is_prime with R1 as input and R2 containing the result ready_prime: SET R7 1 EQ R2 R7 // Check if R2 is 1 (prime) JF increment // If not prime, skip storing and increment the number // Store prime number in memory and increment count STORE R1 R8 // Store prime number at address pointed by R8 INC R8 // Increment prime count // Check if 100 primes are found SET R7 100 EQ R8 R7 JF increment // If not 100 primes found yet, continue finding JMP end // If 100 primes found, end program increment: INC R1 // Increment number to check for prime JMP start_find_primes // Check next number is_prime: SET R2 1 // Assume number is prime initially SET R3 2 // Start divisor from 2 start_loop: // Label to start the loop // Check if we have exceeded the square root of R1 MUL R4 R3 R3 // R4 = R3 * R3 GT R4 R1 // Set flag if R4 > R1 JT is_prime_end // If not exceeded, continue; else, end loop MOD R6 R1 R3 // R6 = R1 % R3 SET R7 0 EQ R7 R6 // Check if R6 is 0 JT not_prime // If yes, number is not prime INC R3 // Increment divisor JMP start_loop // Repeat loop not_prime: SET R2 0 // Set result to 0 (not prime) is_prime_end: JMP ready_prime end: """ primes = evaluate(program) print(primes) # Output: [2, 3, 5, 7, 11, 13, 17, 19, ...] (first 100 primes) |
Running the following program:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 | def evaluate(program): registers = {reg: 0 for reg in ['R1', 'R2', 'R3', 'R4', 'R5', 'R6', 'R7', 'R8']} memory = {} lines = program.strip().split('\n') pc = 0 while pc < len(lines): line = lines[pc].strip() if not line or line.startswith("//"): pc += 1 continue parts = line.split() instruction = parts[0] if instruction == "SET": registers[parts[1]] = int(parts[2]) elif instruction == "INC": registers[parts[1]] += 1 elif instruction == "STORE": memory[registers[parts[2]]] = registers[parts[1]] elif instruction == "MUL": registers[parts[1]] = registers[parts[2]] * registers[parts[3]] elif instruction == "MOD": registers[parts[1]] = registers[parts[2]] % registers[parts[3]] elif instruction == "EQ": registers["FLAG"] = 1 if registers[parts[1]] == registers[parts[2]] else 0 elif instruction == "GT": registers["FLAG"] = 1 if registers[parts[1]] > registers[parts[2]] else 0 elif instruction == "JT": if registers["FLAG"] == 1: pc = lines.index(parts[1] + ":") continue elif instruction == "JF": if registers["FLAG"] == 0: pc = lines.index(parts[1] + ":") continue elif instruction == "JMP": pc = lines.index(parts[1] + ":") continue pc += 1 return list(memory.values()) # Example usage with the provided program: program = """ SET R1 2 // Starting number to check for prime start_find_primes: JMP is_prime // Control will return after executing is_prime with R1 as input and R2 containing the result ready_prime: SET R7 1 EQ R2 R7 // Check if R2 is 1 (prime) JF increment // If not prime, skip storing and increment the number // Store prime number in memory and increment count STORE R1 R8 // Store prime number at address pointed by R8 INC R8 // Increment prime count // Check if 100 primes are found SET R7 100 EQ R8 R7 JF increment // If not 100 primes found yet, continue finding JMP end // If 100 primes found, end program increment: INC R1 // Increment number to check for prime JMP start_find_primes // Check next number is_prime: SET R2 1 // Assume number is prime initially SET R3 2 // Start divisor from 2 start_loop: // Label to start the loop // Check if we have exceeded the square root of R1 MUL R4 R3 R3 // R4 = R3 * R3 GT R4 R1 // Set flag if R4 > R1 JT is_prime_end // If not exceeded, continue; else, end loop MOD R6 R1 R3 // R6 = R1 % R3 SET R7 0 EQ R7 R6 // Check if R6 is 0 JT not_prime // If yes, number is not prime INC R3 // Increment divisor JMP start_loop // Repeat loop not_prime: SET R2 0 // Set result to 0 (not prime) is_prime_end: JMP ready_prime end: """ primes = evaluate(program) print(primes) # Output: [2, 3, 5, 7, 11, 13, 17, 19, ...] (first 100 primes) answer = evaluate(""" SET R1 0 SET R2 1 loop: MUL R3 R2 R2 STORE R3 R1 INC R1 INC R2 SET R3 20 EQ R1 R3 JF loop """)[:10] expected = [1, 4, 9, 16, 25, 36, 49, 64, 81, 100] assert answer == expected, f'Wrong answer; got {answer} instead of {expected}' answer = evaluate(""" SET R1 2 // Starting number to check for prime start_find_primes: JMP is_prime // Control will return after executing is_prime with R1 as input and R2 containing the result ready_prime: SET R7 1 EQ R2 R7 // Check if R2 is 1 (prime) JF increment // If not prime, skip storing and increment the number // Store prime number in memory and increment count STORE R1 R8 // Store prime number at address pointed by R8 INC R8 // Increment prime count // Check if 100 primes are found SET R7 100 EQ R8 R7 JF increment // If not 100 primes found yet, continue finding JMP end // If 100 primes found, end program increment: INC R1 // Increment number to check for prime JMP start_find_primes // Check next number is_prime: SET R2 1 // Assume number is prime initially SET R3 2 // Start divisor from 2 start_loop: // Label to start the loop // Check if we have exceeded the square root of R1 MUL R4 R3 R3 // R4 = R3 * R3 GT R4 R1 // Set flag if R4 > R1 JT is_prime_end // If not exceeded, continue; else, end loop MOD R6 R1 R3 // R6 = R1 % R3 SET R7 0 EQ R7 R6 // Check if R6 is 0 JT not_prime // If yes, number is not prime INC R3 // Increment divisor JMP start_loop // Repeat loop not_prime: SET R2 0 // Set result to 0 (not prime) is_prime_end: JMP ready_prime end: """)[:10] expected = [2, 3, 5, 7, 11, 13, 17, 19, 23, 29] assert answer == expected, f'Wrong answer; got {answer} instead of {expected}' print('All tests passed') |
Traceback (most recent call last):
File "/usr/src/app/main.py", line 103, in <module>
primes = evaluate(program)
^^^^^^^^^^^^^^^^^
File "/usr/src/app/main.py", line 40, in evaluate
pc = lines.index(parts[1] + ":")
^^^^^^^^^^^^^^^^^^^^^^^^^^^
ValueError: 'start_loop:' is not in list
Testing if the previous output contains the string All tests passed
: False