Remove semicolons

This commit is contained in:
Firebolt 2021-10-20 19:21:32 -04:00
parent 5ebc409cc7
commit f7c8c44b6a
No known key found for this signature in database
GPG Key ID: 4219518A61A50458

View File

@ -44,9 +44,9 @@ local function load_byte(memory, addr)
end
local function store_byte(memory, addr, value)
local offset = addr % 4;
local base = (addr - offset) / 4;
memory.data[base] = bit32.bor(memory.data[base] or 0, bit32.lshift(value, 8 * offset));
local offset = addr % 4
local base = (addr - offset) / 4
memory.data[base] = bit32.bor(memory.data[base] or 0, bit32.lshift(value, 8 * offset))
end
-- Runtime functions