-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathday2.1.lua
62 lines (52 loc) · 1.37 KB
/
day2.1.lua
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
input = io.input(arg[1])
output = io.output()
-- Read the input into a data table
output:write("Reading the input into data")
data = {}
dIndex = 0
while true do
local opcode = input:read("n")
input:seek("cur", 2) -- Skip the separators
if opcode == nil then -- If we didn't get an opcode, we're at the end of the input
break
else
data[dIndex] = opcode
dIndex = dIndex + 1
output:write(".")
end
end
output:write("\n")
-- Set the 1202 program alarm
data[1] = 12
data[2] = 2
-- Process
output:write("Processing");
programCounter = 0
while true do
local opcode = data[programCounter]
if opcode == 1 then
-- Add
local aIndex = data[programCounter + 1]
local bIndex = data[programCounter + 2]
local resultIndex = data[programCounter + 3]
data[resultIndex] = data[aIndex] + data[bIndex]
programCounter = programCounter + 4
output:write(".")
elseif opcode == 2 then
-- Multiply
local aIndex = data[programCounter + 1]
local bIndex = data[programCounter + 2]
local resultIndex = data[programCounter + 3]
data[resultIndex] = data[aIndex] * data[bIndex]
programCounter = programCounter + 4
output:write(".")
elseif opcode == 99 then
-- Halt
break
else
output:write("(WARN: Unrecognized opcode " .. opcode .. " at index " .. programCounter .. "!)")
end
end
output:write("\n")
-- Output result
output:write("data[0]: " .. data[0] .. "\n");