summaryrefslogtreecommitdiff
path: root/8/part1.c
diff options
context:
space:
mode:
Diffstat (limited to '8/part1.c')
-rw-r--r--8/part1.c76
1 files changed, 76 insertions, 0 deletions
diff --git a/8/part1.c b/8/part1.c
new file mode 100644
index 0000000..6dbb058
--- /dev/null
+++ b/8/part1.c
@@ -0,0 +1,76 @@
+#include <stdio.h>
+#include <stdint.h>
+#include <stdlib.h>
+#include <malloc.h>
+#include <string.h>
+
+#define INPUT_LEN 650
+
+struct Operation
+{
+ char opcode;
+ int arg;
+ char has_been_executed;
+};
+
+int exe_program(const char *filename)
+{
+ FILE *file = fopen(filename, "r");
+
+ // Include space for newline and string terminator
+ char buffer[16] = { 0 };
+
+ struct Operation *ops = malloc(INPUT_LEN * sizeof(struct Operation));
+ size_t opcount = 0;
+
+ while (fgets(buffer, 16, file)) {
+ struct Operation *op = &ops[opcount++];
+ op->has_been_executed = 0;
+ switch (buffer[0])
+ {
+ // nop
+ case 'n':
+ op->opcode = 0;
+ break;
+ // acc
+ case 'a':
+ op->opcode = 1;
+ break;
+ // jmp
+ case 'j':
+ op->opcode = 2;
+ break;
+ }
+
+ op->arg = atoi(&buffer[4]);
+ }
+
+ fclose(file);
+
+ struct Operation *cur_op = ops;
+ int acc = 0;
+ while (!cur_op->has_been_executed)
+ {
+ cur_op->has_been_executed = 1;
+ switch (cur_op->opcode)
+ {
+ case 0:
+ cur_op++;
+ break;
+ case 1:
+ acc += cur_op->arg;
+ cur_op++;
+ break;
+ case 2:
+ cur_op += cur_op->arg;
+ break;
+ }
+ }
+
+ return acc;
+}
+
+int main(int argc, char *argv[])
+{
+ printf("%i\n", exe_program(argv[argc - 1]));
+}