about summary refs log tree commit diff stats
path: root/linux/advent2017
diff options
context:
space:
mode:
Diffstat (limited to 'linux/advent2017')
-rw-r--r--linux/advent2017/1a.mu4
1 files changed, 3 insertions, 1 deletions
diff --git a/linux/advent2017/1a.mu b/linux/advent2017/1a.mu
index 39bb1ff8..e2541441 100644
--- a/linux/advent2017/1a.mu
+++ b/linux/advent2017/1a.mu
@@ -15,7 +15,9 @@ fn main -> _/ebx: int {
     break-if-=
 
     var next_digit/eax: int <- read_digit input_stream_addr
-    var next_digit/eax: int <- copy next_digit
+    # hacky newline check
+    compare next_digit, 0
+    break-if-<
 
     {
       compare this_digit, next_digit
a> 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 198 199 200 201