From 433eeade4c411911028e666e3ecd27f912a94abb Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=B4me=20Benoit?= Date: Fri, 30 Jun 2017 19:26:38 +0200 Subject: [PATCH] Some indentation cleanups on the Mastermind game MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Jérôme Benoit --- project/mips1.asm | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/project/mips1.asm b/project/mips1.asm index 690aca8..2cba67e 100644 --- a/project/mips1.asm +++ b/project/mips1.asm @@ -122,7 +122,7 @@ check_input: addi $t5, $t5, -9 bgez $t5, input - la $s2, ($zero) # Same counter + la $s2, ($zero) # Same counter la $s3 ($zero) compare_input: la $t7, input_value @@ -203,6 +203,7 @@ won: syscall j exit + lost: la $a0, newline li $v0, 4 @@ -212,6 +213,7 @@ lost: syscall j exit + exit: li $v0, 10 - syscall \ No newline at end of file + syscall -- 2.34.1