initial commit

This commit is contained in:
Jorj Bauer 2018-06-05 08:24:55 -04:00
commit f24e38c982
2 changed files with 1351 additions and 0 deletions

1343
6502.lua Normal file

File diff suppressed because it is too large Load Diff

8
const.lua Normal file
View File

@ -0,0 +1,8 @@
return function (x)
return setmetatable({}, { __index = x,
__newindex = function(table, key, value)
error("Attempt to modify read-only table")
end,
__metatable = false
})
end